Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 239 for other_1 (0.1 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        @Test
        void canExecuteExternalScriptFromExternalScript() {
            testFile('build.gradle') << ''' apply { from 'other1.gradle' } '''
            testFile('other1.gradle') << ''' apply { from 'other2.gradle' } '''
            testFile('other2.gradle') << ''' task doStuff '''
    
            inTestDirectory().withTasks('doStuff').run()
        }
    
        @Test
        void canFetchScriptViaHttp() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/store_test.go

    	store.addInstances(
    		configKeyWithParent{
    			configKey: configKey{namespace: otherNs.Namespace, name: otherNs.Name},
    		},
    		[]*model.ServiceInstance{
    			makeInstance(otherNs, "1.1.1.1", 444, otherNs.Spec.(*networking.ServiceEntry).Ports[0], nil, PlainText),
    			makeInstance(otherNs, "1.1.1.1", 445, otherNs.Spec.(*networking.ServiceEntry).Ports[1], nil, PlainText),
    		},
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. src/runtime/pprof/protomem_test.go

    type opCall struct {
    }
    
    var sink []byte
    
    func storeAlloc() {
    	sink = make([]byte, 16)
    }
    
    func nonRecursiveGenericAllocFunction[CurrentOp any, OtherOp any](alloc bool) {
    	if alloc {
    		storeAlloc()
    	} else {
    		nonRecursiveGenericAllocFunction[OtherOp, CurrentOp](true)
    	}
    }
    
    func TestGenericsInlineLocations(t *testing.T) {
    	if testenv.OptimizationOff() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crd/conversion.go

    		gvk := obj.GroupVersionKind()
    		s, exists := collections.PilotGatewayAPI().FindByGroupVersionAliasesKind(resource.FromKubernetesGVK(&gvk))
    		if !exists {
    			log.Debugf("unrecognized type %v", obj.Kind)
    			others = append(others, obj)
    			continue
    		}
    
    		cfg, err := ConvertObject(s, &obj, "")
    		if err != nil {
    			return nil, nil, fmt.Errorf("cannot parse proto message for %v: %v", obj.Name, err)
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/webhook/webhook.go

    					}
    				}
    			}
    			if len(matches) > 1 {
    				for match := range matches {
    					others := matches.Difference(sets.New(match))
    					context.Report(gvk.MutatingWebhookConfiguration, msg.NewInvalidWebhook(resources[match],
    						fmt.Sprintf("Webhook overlaps with others: %v. This may cause injection to occur twice.", sets.SortedList(others))))
    				}
    			}
    		}
    	}
    
    	// Next, check service references
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_update_uuid.go

    	// to random or time-based.  This is something of a fiction since
    	// we're not actually hashing using MD5 or SHA1, but it seems better
    	// to use this UUID flavor than any of the others. This is similar
    	// to how other linkers handle this (for example this code in lld:
    	// https://github.com/llvm/llvm-project/blob/2a3a79ce4c2149d7787d56f9841b66cacc9061d0/lld/MachO/Writer.cpp#L524).
    	rv[6] &= 0xcf
    	rv[6] |= 0x30
    	rv[8] &= 0x3f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. docs/pl/docs/fastapi-people.md

    ...Ale tutaj chcę pokazać Ci społeczność.
    
    ---
    
    **FastAPI** otrzymuje wiele wsparcia od społeczności. Chciałbym podkreślić ich wkład.
    
    To są ludzie, którzy:
    
    * [Pomagają innym z pytaniami na GitHub](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}.
    * [Tworzą Pull Requesty](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:50:03 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. docs/pt/docs/fastapi-people.md

    ...Mas aqui eu quero mostrar a você a comunidade.
    
    ---
    
    **FastAPI** recebe muito suporte da comunidade. E quero destacar suas contribuições.
    
    Estas são as pessoas que:
    
    * [Help others with issues (questions) in GitHub](help-fastapi.md#responda-perguntas-no-github){.internal-link target=_blank}.
    * [Create Pull Requests](help-fastapi.md#crie-um-pull-request){.internal-link target=_blank}.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. docs/en/docs/deployment/manually.md

        * `app`: the object created inside of `main.py` with the line `app = FastAPI()`.
    
        It is equivalent to:
    
        ```Python
        from main import app
        ```
    
    !!! warning
        Uvicorn and others support a `--reload` option that is useful during development.
    
        The `--reload` option consumes much more resources, is more unstable, etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/jsonmergepatch/patch.go

    		return nil, nil, err
    	}
    	o, err := json.Marshal(filteredMap)
    	return o, filteredMap, err
    }
    
    // keepOrDeleteNullInObj will keep only the null value and delete all the others,
    // if keepNull is true. Otherwise, it will delete all the null value and keep the others.
    func keepOrDeleteNullInObj(m map[string]interface{}, keepNull bool) (map[string]interface{}, error) {
    	filteredMap := make(map[string]interface{})
    	var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top