Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 248 for chains (0.13 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up
       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/2293")
        void 'circular dependency is detected on cycle within chained finalizers'() {
            buildFile """
                task a {
                    finalizedBy 'b'
                }
                task b {
                    finalizedBy 'c'
                }
                task c {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       *
       * <p>Invalid: - Collected: key/value was partially collected, but not yet cleaned up
       */
      interface InternalEntry<K, V, E extends InternalEntry<K, V, E>> {
        /** Gets the next entry in the chain. */
        E getNext();
    
        /** Gets the entry's hash. */
        int getHash();
    
        /** Gets the key for this entry. */
        K getKey();
    
        /** Gets the value for the entry. */
        V getValue();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // `module` attribute.
    std::unique_ptr<OperationPass<ModuleOp>> CreateXlaCallModuleSerializationPass();
    
    }  // namespace TF
    
    namespace tf_executor {
    
    // Creates a pass to chain control outputs of while loop body.
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorConvertControlToDataOutputsPass();
    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorConvertControlToDataOutputsPass(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder.go

    	httpProtocolOptions *http.HttpProtocolOptions
    }
    
    // metadataCerts hosts client certificate related metadata specified in proxy metadata.
    type metadataCerts struct {
    	// tlsClientCertChain is the absolute path to client cert-chain file
    	tlsClientCertChain string
    	// tlsClientKey is the absolute path to client private key file
    	tlsClientKey string
    	// tlsClientRootCert is the absolute path to client root cert file
    	tlsClientRootCert string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    )
    
    const (
    	// MetadataClientCertKey is ISTIO_META env var used for client key.
    	MetadataClientCertKey = "ISTIO_META_TLS_CLIENT_KEY"
    	// MetadataClientCertChain is ISTIO_META env var used for client cert chain.
    	MetadataClientCertChain = "ISTIO_META_TLS_CLIENT_CERT_CHAIN"
    	// MetadataClientRootCert is ISTIO_META env var used for client root cert.
    	MetadataClientRootCert = "ISTIO_META_TLS_CLIENT_ROOT_CERT"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
      // sideEffects == Unknown or Some.
      optional string sideEffects = 6;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/asm_ppc64x.s

    	MOVD	arg+8(FP), R4
    
    	MOVD	R1, R15
    	SUB	$(asmcgocallSaveOffset+8), R1
    	RLDCR	$0, R1, $~15, R1	// 16-byte alignment for gcc ABI
    	MOVD	R15, asmcgocallSaveOffset(R1)
    
    	MOVD	R0, 0(R1)	// clear back chain pointer (TODO can we give it real back trace information?)
    
    	// This is a "global call", so put the global entry point in r12
    	MOVD	R3, R12
    
    #ifdef GO_PPC64X_HAS_FUNCDESC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. internal/dsync/drwmutex.go

    	// Quorum is effectively = total clients subtracted with tolerance limit
    	quorum := len(restClnts) - tolerance
    	if !isReadLock {
    		// In situations for write locks, as a special case
    		// to avoid split brains we make sure to acquire
    		// quorum + 1 when tolerance is exactly half of the
    		// total locker clients.
    		if quorum == tolerance {
    			quorum++
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

                task test(type: TaskWithValidOutputFilesAndOutputDirectoriesProperty) {
                }
            """
    
            expect:
            succeeds "test"
        }
    
        def "fails when input file calls are chained (properties(Map))"() {
            buildFile << """
                task test {
                    inputs.properties(input: 1).properties(input2: 2)
                }
            """
    
            expect:
            fails "test"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top