Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for place (0.1 sec)

  1. cluster/gce/gci/configure-helper.sh

      if [[ -n "${FLUENTD_GCP_MEMORY_REQUEST:-}" ]]; then
        any_overrides=true
      fi
      if ! $any_overrides; then
        # Nothing to do here.
        exit
      fi
    
      # Wait until ScalingPolicy CRD is in place.
      until kubectl get scalingpolicies.scalingpolicy.kope.io
      do
        sleep 10
      done
    
      # Single-shot, not managed by addon manager. Can be later modified or removed
      # at will.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	p.CgoCFLAGS = pp.CgoCFLAGS
    	p.CgoCPPFLAGS = pp.CgoCPPFLAGS
    	p.CgoCXXFLAGS = pp.CgoCXXFLAGS
    	p.CgoFFLAGS = pp.CgoFFLAGS
    	p.CgoLDFLAGS = pp.CgoLDFLAGS
    	p.CgoPkgConfig = pp.CgoPkgConfig
    	// We modify p.Imports in place, so make copy now.
    	p.Imports = make([]string, len(pp.Imports))
    	copy(p.Imports, pp.Imports)
    	p.Internal.RawImports = pp.Imports
    	p.TestGoFiles = pp.TestGoFiles
    	p.TestImports = pp.TestImports
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    // that the remnant of the running pod is terminated and allow garbage collection to proceed. We do
    // not update the status of the pod because with the source of configuration removed, we have no
    // place to send that status.
    func (kl *Kubelet) SyncTerminatingRuntimePod(_ context.Context, runningPod *kubecontainer.Pod) error {
    	// TODO(#113606): connect this with the incoming context parameter, which comes from the pod worker.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. src/reflect/value.go

    		t := v.typ().Elem()
    		*p = growslice(t, *p, n)
    	}
    }
    
    // extendSlice extends a slice by n elements.
    //
    // Unlike Value.grow, which modifies the slice in place and
    // does not change the length of the slice in place,
    // extendSlice returns a new slice value with the length
    // incremented by the number of specified elements.
    func (v Value) extendSlice(n int) Value {
    	v.mustBeExported()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertSame(barChild, bar);
      }
    
      /*
       * Android does not handle this stack overflow gracefully... though somehow some other
       * stack-overflow tests work. It must depend on the exact place the error occurs.
       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
      public void testTransform_StackOverflow() throws Exception {
        {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertSame(barChild, bar);
      }
    
      /*
       * Android does not handle this stack overflow gracefully... though somehow some other
       * stack-overflow tests work. It must depend on the exact place the error occurs.
       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
      public void testTransform_StackOverflow() throws Exception {
        {
          /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    to gradually roll upgrades, with proper canary deployments for Istio components. It should be possible to deploy a new version while keeping the stable version in place and gradually migrate apps to the new version. - More flexibility: the new installer allows multiple 'environments', allowing applications to select a set of control plane settings and components. While the entire mesh respects the same APIs and config, apps may target different 'environments' which contain different instances and variants...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      }
    
      const auto& node_def = node.def();
      // NodeDef can contain partial TF device names. In such cases, canonicalize
      // it. Note that in current TF, placer will place full device name to each
      // node.
      DeviceNameUtils::ParsedName parsed_name;
      if (!DeviceNameUtils::ParseFullName(node_def.device(), &parsed_name)) {
        return errors::InvalidArgument(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // result of a test can be recovered from the cache, go test will
    // redisplay the previous output instead of running the test binary
    // again. When this happens, go test prints '(cached)' in place of the
    // elapsed time in the summary line.
    //
    // The rule for a match in the cache is that the run involves the same
    // test binary and the flags on the command line come entirely from a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    				return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    			}
    		}
    
    		// When kubelet is containerized, devicePath may be a symlink at a place unavailable to
    		// kubelet, so evaluate it on the host and expect that it links to a device in /dev,
    		// which will be available to containerized kubelet. If still it does not exist,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top