Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 325 for chains (0.25 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AbstractJUnitTestClassProcessor.java

        }
    
        @Override
        public void startProcessing(TestResultProcessor resultProcessor) {
            TestResultProcessor resultProcessorChain = createResultProcessorChain(resultProcessor);
            // Wrap the result processor chain up in a blocking actor, to make the whole thing thread-safe
            resultProcessorActor = actorFactory.createBlockingActor(resultProcessorChain);
            executor = createTestExecutor(resultProcessorActor);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. manifests/helm-profiles/openshift-ambient.yaml

    meshConfig:
      defaultConfig:
        proxyMetadata:
          ISTIO_META_ENABLE_HBONE: "true"
    global:
      platform: openshift
    cni:
      ambient:
        enabled: true
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      logLevel: info
      provider: "multus"
    pilot:
      cni:
        enabled: true
        provider: "multus"
      variant: distroless
      env:
        PILOT_ENABLE_AMBIENT: "true"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 664 bytes
    - Viewed (0)
  3. src/text/template/exec.go

    }
    
    func (s *state) evalChainNode(dot reflect.Value, chain *parse.ChainNode, args []parse.Node, final reflect.Value) reflect.Value {
    	s.at(chain)
    	if len(chain.Field) == 0 {
    		s.errorf("internal error: no fields in evalChainNode")
    	}
    	if chain.Node.Type() == parse.NodeNil {
    		s.errorf("indirection through explicit nil in %s", chain)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    func (s preparedGenericAPIServer) NonBlockingRunWithContext(ctx context.Context, shutdownTimeout time.Duration) (<-chan struct{}, <-chan struct{}, error) {
    	// Use an internal stop channel to allow cleanup of the listeners on error.
    	internalStopCh := make(chan struct{})
    	var stoppedCh <-chan struct{}
    	var listenerStoppedCh <-chan struct{}
    	if s.SecureServingInfo != nil && s.Handler != nil {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ComponentArtifactResolveState.java

     *     for example when using an {@link org.gradle.api.artifacts.ArtifactView} to select different variants.</li>
     *     <li>Determine how to produce the artifacts of the variant, for example by running a chain of transformers.</li>
     *     <li>Produce the artifacts, for example by running the transforms or downloading files.</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_executor.cc

    #include "tfrt/bef_converter/mlir_to_bef.h"  // from @tf_runtime
    #include "tfrt/bef_executor/bef_file.h"  // from @tf_runtime
    #include "tfrt/host_context/async_value.h"  // from @tf_runtime
    #include "tfrt/host_context/chain.h"  // from @tf_runtime
    #include "tfrt/host_context/execution_context.h"  // from @tf_runtime
    #include "tfrt/host_context/function.h"  // from @tf_runtime
    #include "tfrt/host_context/host_context.h"  // from @tf_runtime
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    		checkSign(t, cli, false)
    		checkSign(t, cli, false)
    		server.Authenticator.Set("", "istiod.istio-system.svc")
    		checkSign(t, cli, true)
    		if err := file.Copy(filepath.Join(certDir, "cert-chain.pem"), dir, "cert-chain.pem"); err != nil {
    			t.Fatal(err)
    		}
    		if err := file.Copy(filepath.Join(certDir, "key.pem"), dir, "key.pem"); err != nil {
    			t.Fatal(err)
    		}
    		checkSign(t, cli, false)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                }
    
                def chain = providers
                    .systemProperty("foo")
                    .orElse(providers.systemProperty("bar"))
                    .map { "foo | bar = $it" }
                    .orElse(providers.systemProperty("baz"))
                    .map { "($it)" }
    
                tasks.register("ok", PrintValueTask.class) { task ->
                    task.value = chain
                }
            '''
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. cmd/kube-proxy/app/server_test.go

    func Test_getNodeIPs(t *testing.T) {
    	var chans [3]chan error
    
    	client := clientsetfake.NewSimpleClientset(
    		// node1 initially has no IP address.
    		makeNodeWithAddress("node1", ""),
    
    		// node2 initially has an invalid IP address.
    		makeNodeWithAddress("node2", "invalid-ip"),
    
    		// node3 initially does not exist.
    	)
    
    	for i := range chans {
    		chans[i] = make(chan error)
    		ch := chans[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

       * status and second by priority, you might use {@code byStatus.compound(byPriority)}. For a
       * compound ordering with three or more components, simply chain multiple calls to this method.
       *
       * <p>An ordering produced by this method, or a chain of calls to this method, is equivalent to
       * one created using {@link Ordering#compound(Iterable)} on the same component comparators.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top