Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 105 for clonePod (0.23 sec)

  1. src/internal/trace/traceviewer/static/webcomponents.min.js

    =e.getTreeScope,j=e.isWrapper,D=e.mixin,H=e.registerTransientObservers,x=e.registerWrapper,R=e.setTreeScope,I=e.unsafeUnwrap,P=e.unwrap,k=e.unwrapIfNeeded,A=e.wrap,W=e.wrapIfNeeded,F=e.wrappers,U=!1,q=document.importNode,B=window.Node.prototype.cloneNode,V=window.Node,G=window.DocumentFragment,z=(V.prototype.appendChild,V.prototype.compareDocumentPosition),K=V.prototype.isEqualNode,$=V.prototype.insertBefore,X=V.prototype.removeChild,Y=V.prototype.replaceChild,Z=/Trident|Edge/.test(navigator.use...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/interface.go

    	// modify its pre-processed info. The framework guarantees that the extensions
    	// AddPod/RemovePod will only be called after PreFilter, possibly on a cloned
    	// CycleState, and may call those functions more than once before calling
    	// Filter again on a specific node.
    	PreFilterExtensions() PreFilterExtensions
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                                + newRepos.stream().map(s -> "    " + s).collect(Collectors.joining("\n")));
                    }
                }
    
                // we pass a cloned model, so that resolving the parent version does not affect the returned model
                ModelData parentData = readParent(model, currentData.source(), request, problems);
    
                if (parentData == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/iscsi_util.go

    		if len(devicePaths) == 0 {
    			// No path attached, report error and stop trying. kubelet will try again in a short while
    			// delete cloned iface
    			execWithLog(b, "iscsiadm", "-m", "iface", "-I", b.Iface, "-o", "delete")
    			klog.Errorf("iscsi: failed to get any path for iscsi disk, last err seen:\n%v", lastErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                // add repositories specified by the current model so that we can resolve the parent
                configureResolver(request.getModelResolver(), modelv4, problems, false);
    
                // we pass a cloned model, so that resolving the parent version does not affect the returned model
                ModelData parentData = readParent(new Model(modelv4), currentData.getSource(), request, problems);
    
                if (parentData == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    		t.Skip("skip in short mode")
    	}
    	globalSkip(t)
    	t.Parallel()
    	tmpDir := t.TempDir()
    	// Use a temporary pkgdir to not interfere with other tests, and not write to GOROOT.
    	// Cannot use goCmd as it runs with cloned GOROOT which is incomplete.
    	runWithEnv(t, "building std", []string{"GOROOT=" + oldGOROOT},
    		filepath.Join(oldGOROOT, "bin", "go"), "install", "-buildmode=shared", "-pkgdir="+tmpDir, "std")
    
    	// Issue #58966.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. pilot/pkg/model/service.go

    		// TODO(nmittler): Will need to re-think this default when cluster.local is actually cluster-local.
    		return true
    	}
    	return ep.DiscoverabilityPolicy.IsDiscoverableFromProxy(ep, p)
    }
    
    // MetadataClone returns the cloned endpoint metadata used for telemetry purposes.
    // This should be used when the endpoint labels should be updated.
    func (ep *IstioEndpoint) MetadataClone() *EndpointMetadata {
    	return &EndpointMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Prepares converting the graph to an MLIR module. This step removes the
      // backedges of the graph, orders the nodes and infers the shapes.
      // PrepareConvert needs to ensure that the original `graph` is cloned prior
      // execution. The cloning procedure relies on the roundtrip through the
      // GraphDef. Graph to GraphDef def conversion is heavy, in case, `graph_def`
      // was obtained previously provide it to the PrepareConvert to reuse.
    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. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        return new AsyncFunction<X, V>() {
          @Override
          public ListenableFuture<V> apply(X t) {
            throw new AssertionError("Unexpected fallback", t);
          }
        };
      }
    
      // catchingAsync tests cloned from the old withFallback tests:
    
      public void testCatchingAsync_inputDoesNotRaiseException() throws Exception {
        AsyncFunction<Throwable, Integer> fallback = unexpectedAsyncFunction();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        return new AsyncFunction<X, V>() {
          @Override
          public ListenableFuture<V> apply(X t) {
            throw new AssertionError("Unexpected fallback", t);
          }
        };
      }
    
      // catchingAsync tests cloned from the old withFallback tests:
    
      public void testCatchingAsync_inputDoesNotRaiseException() throws Exception {
        AsyncFunction<Throwable, Integer> fallback = unexpectedAsyncFunction();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top