Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 158 for recreate (0.18 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

        val factoryId = readSmallInt()
        val type = readClass()
        val state = read()
        return managedFactories.lookup(factoryId).fromState(type, state).let {
            require(it != null) {
                "Failed to recreate managed value of type $type from state $state"
            }
            it
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.cc

        // Recreate the operation by using the wrapper's operands and return types.
        // TODO(fengliuai): copy the regions.
        OperationState state(op->getLoc(), op->getName().getStringRef(),
                             parent_op->getOperands(), parent_op->getResultTypes(),
                             op->getAttrs(), op->getSuccessors());
        Operation* inlined = builder.create(state);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginAdapter.java

    import org.gradle.internal.operations.notify.BuildOperationNotificationListenerRegistrar;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Collection;
    
    /**
     * Captures the state to recreate the {@link GradleEnterprisePluginService} instance.
     * <p>
     * The adapter is created on check-in in {@link DefaultGradleEnterprisePluginCheckInService} via {@link DefaultGradleEnterprisePluginAdapterFactory}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. pkg/kube/rpc_creds.go

    				its.audiences, its.expirationSeconds)
    			if err == nil {
    				its.Token = tokenRequest.Status.Token
    				its.Expires = tokenRequest.Status.ExpirationTimestamp.Time
    			} else {
    				log.Infof("GetRequestMetadata failed to recreate token: %v", err.Error())
    			}
    		}
    		token = its.Token
    		its.mu.Unlock()
    	}
    
    	return map[string]string{
    		"authorization": "Bearer " + token,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         *
         * @return this
         */
        ClassLoaderScope lock();
    
        boolean isLocked();
    
        /**
         * Notifies this scope that it is about to be reused in a new build invocation, so that the scope can recreate or otherwise prepare its classloaders for this, as certain state may have
         * been discarded to reduce memory pressure.
         */
        void onReuse();
    
        ClassLoaderScope getOriginalScope();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. hack/verify-vendor.sh

    mkdir -p "${_kubetmp}"
    tar --exclude=.git --exclude="./_*" -c . | (cd "${_kubetmp}" && tar xf -)
    
    pushd "${_kubetmp}" > /dev/null 2>&1
      # Destroy deps in the copy of the kube tree
      rm -rf ./vendor ./LICENSES
    
      # Recreate the vendor tree using the nice clean set we just downloaded
      hack/update-vendor.sh
    popd > /dev/null 2>&1
    
    ret=0
    
    pushd "${KUBE_ROOT}" > /dev/null 2>&1
      # Test for diffs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. src/crypto/x509/pkcs8_test.go

    // like an integer, even though it's an OCTET STRING field). Thus if you
    // regenerate this you may, randomly, find that it's a byte shorter than
    // expected and the Go test will fail to recreate it exactly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 19 16:45:10 UTC 2022
    - 9K bytes
    - Viewed (0)
  8. pkg/test/framework/components/istio/cleanup.go

    	}()
    
    	if i.cfg.DumpKubernetesManifests {
    		i.installer.Dump(i.ctx)
    	}
    
    	if i.cfg.DeployIstio {
    		errG := multierror.Group{}
    		// Make sure to clean up primary clusters before remotes, or istiod will recreate some of the CMs that we delete
    		// in the remote clusters before it's deleted.
    		for _, c := range i.ctx.AllClusters().Primaries() {
    			i.cleanupCluster(c, &errG)
    		}
    		for _, c := range i.ctx.Clusters().Remotes() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_delta_test.go

    	if !proto.Equal(gotEcdsConfig, wantEcdsConfig) {
    		t.Errorf("xds proxy wasm config conversion got %v want %v", gotEcdsConfig, wantEcdsConfig)
    	}
    	n1 := proxy.ecdsLastNonce
    
    	// reset wasm cache to a NACK cache, and recreate xds server as well to simulate a version bump
    	proxy.wasmCache = &fakeNackCache{}
    	f = xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: string(ef),
    	})
    	setDialOptions(proxy, f.BufListener)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            // So, update the classpath of this shared classloader
            // It would be better to not combine client classloaders but instead to recreate the client side structure
            if (details.spec instanceof ClientOwnedClassLoaderSpec) {
                ClientOwnedClassLoaderSpec spec = (ClientOwnedClassLoaderSpec) details.spec;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top