Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for resolutions (0.19 sec)

  1. src/cmd/go/internal/load/pkg.go

    		fi, err := fsys.Stat(path)
    		return err == nil && fi.IsDir()
    	})
    }
    
    // ResolveImportPath returns the true meaning of path when it appears in parent.
    // There are two different resolutions applied.
    // First, there is Go 1.5 vendoring (golang.org/s/go15vendor).
    // If vendor expansion doesn't trigger, then the path is also subject to
    // Go 1.11 module legacy conversion (golang.org/issue/25069).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    		})
    	}
    
    	for _, tt := range cases {
    		for _, resolution := range []model.Resolution{model.DNSLB, model.DNSRoundRobinLB} {
    			t.Run(fmt.Sprintf("%s_%s", tt.name, resolution), func(t *testing.T) {
    				service.Resolution = resolution
    				cg := NewConfigGenTest(t, TestOptions{
    					MeshConfig: tt.mesh,
    					Services:   []*model.Service{service},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    		Ports:      model.PortList{servicePort},
    		Resolution: model.Passthrough,
    	}
    
    	cases := []struct {
    		name          string
    		redisEnabled  bool
    		resolution    model.Resolution
    		lbType        cluster.Cluster_LbPolicy
    		discoveryType cluster.Cluster_DiscoveryType
    	}{
    		{
    			name:          "redis disabled",
    			redisEnabled:  false,
    			resolution:    model.ClientSideLB,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    							fmt.Errorf("hosts must be FQDN if no endpoints are provided for resolution mode %s", serviceEntry.Resolution))
    					}
    				}
    			}
    			if serviceEntry.Resolution == networking.ServiceEntry_DNS_ROUND_ROBIN && len(serviceEntry.Endpoints) > 1 {
    				errs = AppendValidation(errs,
    					fmt.Errorf("there must only be 0 or 1 endpoint for resolution mode %s", serviceEntry.Resolution))
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache(because = "resolves external dependency when writing cache entry, rather than when running consuming task, so exception chain is different")
        def "failure in resolution propagates to chain (scheduled: #scheduled)"() {
            given:
            def module = mavenHttpRepo.module("test", "test", "1.3").publish()
    
            buildFile << declareAttributes() << duplicatorTransform() << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	sched.needspinning.Store(0)
    }
    
    func (mp *m) hasCgoOnStack() bool {
    	return mp.ncgo > 0 || mp.isextra
    }
    
    const (
    	// osHasLowResTimer indicates that the platform's internal timer system has a low resolution,
    	// typically on the order of 1 ms or more.
    	osHasLowResTimer = GOOS == "windows" || GOOS == "openbsd" || GOOS == "netbsd"
    
    	// osHasLowResClockInt is osHasLowResClock but in integer form, so it can be used to create
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			// Using a fake clock for the queue and incrementing it after each added Pod will
    			// solve this issue on Windows unit test runs.
    			// For more details on the Windows clock resolution issue, see: https://github.com/golang/go/issues/8687
    			for _, p := range test.initialPods {
    				q.Add(logger, p)
    				fakeClock.Step(time.Second)
    			}
    
    			for _, action := range test.actions {
    				switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    //	go install golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow@latest
    //	go vet -vettool=$(which shadow)
    //
    // The build flags supported by go vet are those that control package resolution
    // and execution, such as -C, -n, -x, -v, -tags, and -toolexec.
    // For more about these flags, see 'go help build'.
    //
    // See also: go fmt, go fix.
    //
    // # Build constraints
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top