Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 372 for need (0.05 sec)

  1. pilot/pkg/model/push_context.go

    			// Common case: alias pointing to a concrete service
    			resolvedAliases[alias] = referencedService
    			continue
    		}
    		// Otherwise, we need to traverse the alias "graph".
    		// In an obscure edge case, a user could make a loop, so we will need to handle that.
    		seen := sets.New(alias.Hostname, referencedService)
    		for {
    			n, f := unnamespacedRawAlias[referencedService]
    			if !f {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. src/cmd/dist/build.go

    	//
    	// The toolchain1 we built earlier is built from the new sources,
    	// but because it was built using cmd/go it has no build IDs.
    	// The eventually installed toolchain needs build IDs, so we need
    	// to do another round:
    	//
    	//	toolchain2 = mk(new toolchain, toolchain1, go_bootstrap)
    	//
    	timelog("build", "toolchain2")
    	if vflag > 0 {
    		xprintf("\n")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// could also get tracked across pod scheduling cycles, but that
    	// - adds complexity (need to carefully sync state with informer events
    	//   for claims and ResourceSlices)
    	// - would make integration with cluster autoscaler harder because it would need
    	//   to trigger informer callbacks.
    	//
    	// When implementing cluster autoscaler support, this assume cache or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:creating_directories_example]]
    == Creating directories
    
    Many tasks need to create directories to store the files they generate, which is why Gradle <<incremental_build.adoc#incremental_build,automatically manages>> this aspect of tasks when they explicitly define file and directory outputs.
    All core Gradle tasks ensure that any output directories they need are created, if necessary, using this mechanism.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/init.go

    			rs = overrideRoots(ctx, rs, []module.Version{{Path: "go", Version: v}})
    
    			// We need to add a 'go' version to the go.mod file, but we must assume
    			// that its existing contents match something between Go 1.11 and 1.16.
    			// Go 1.11 through 1.16 do not support graph pruning, but the latest Go
    			// version uses a pruned module graph — so we need to convert the
    			// requirements to support pruning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  6. pkg/proxy/winkernel/proxier.go

    				svcInfo.targetPort = int(ep.port)
    			}
    			// There is a bug in Windows Server 2019 that can cause two endpoints to be created with the same IP address, so we need to check using endpoint ID first.
    			// TODO: Remove lookup by endpoint ID, and use the IP address only, so we don't need to maintain multiple keys for lookup.
    			if len(ep.hnsID) > 0 {
    				newHnsEndpoint = queriedEndpoints[ep.hnsID]
    			}
    
    			if newHnsEndpoint == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

        install_cni
      fi
    }
    
    # If we are running in the CI, we need a few more things before we can start
    if [[ "${KUBETEST_IN_DOCKER:-}" == "true" ]]; then
      echo "Preparing to test ..."
      "${KUBE_ROOT}"/hack/install-etcd.sh
      export PATH="${KUBE_ROOT}/third_party/etcd:${PATH}"
      KUBE_FASTBUILD=true make ginkgo cross
    
      # install things we need that are missing from the kubekins image
      update_packages
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. .bazelrc

    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    build:windows --host_linkopt=/DEBUG
    build:windows --linkopt=/OPT:REF
    build:windows --host_linkopt=/OPT:REF
    build:windows --linkopt=/OPT:ICF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		// When we load imports, we detect the following conditions:
    		//
    		// - missing transitive dependencies that need to be resolved from outside the
    		//   current build list (note that these may add new matches for existing
    		//   pattern queries!)
    		//
    		// - transitive dependencies that didn't match any other query,
    		//   but need to be upgraded due to the -u flag
    		//
    		// - ambiguous import errors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. src/runtime/map.go

    					continue
    				}
    			} else {
    				// Hash isn't repeatable if k != k (NaNs).  We need a
    				// repeatable and randomish choice of which direction
    				// to send NaNs during evacuation. We'll use the low
    				// bit of tophash to decide which way NaNs go.
    				// NOTE: this case is why we need two evacuate tophash
    				// values, evacuatedX and evacuatedY, that differ in
    				// their low bit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
Back to top