Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 184 for capsule (0.19 sec)

  1. pkg/volume/csi/csi_client_test.go

    	capabilityMethodToTest func(*csiDriverClient) (bool, error),
    	nodeClientGenerator func(bool) *fake.NodeClient) {
    
    	testCases := []struct {
    		name    string
    		capable bool
    	}{
    		{name: "positive", capable: true},
    		{name: "negative", capable: false},
    	}
    
    	for _, tc := range testCases {
    		t.Logf("Running test case: %s", tc.name)
    		fakeCloser := fake.NewCloser(t)
    		client := &csiDriverClient{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  2. operator/pkg/validate/common.go

    	// is anchored and has capturing groups for name, tag, and digest
    	// components.
    	ReferenceRegexp = anchored(capture(NameRegexp),
    		optional(literal(":"), capture(TagRegexp)),
    		optional(literal("@"), capture(DigestRegexp)))
    
    	// ObjectNameRegexp is a legal name for a k8s object.
    	ObjectNameRegexp = match(`[a-z0-9.-]{1,254}`)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                val t6: Task = tasks.create("bazar")
                val t7: Copy = tasks.create("cathedral", Copy::class)
                val t8: Copy = tasks.create<Copy>("cabin")
    
                val t9: Task = tasks.create("castle") {
                    description += "!"
                }
                val t10: Copy = tasks.create("valley", Copy::class) {
                    description += "!"
                    destinationDir = file("out")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    ====
    include::sample[dir="snippets/tutorial/logging/kotlin",files="build.gradle.kts[tags=capture-stdout]"]
    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=capture-stdout]"]
    ====
    
    To change the log level for standard out or error during task execution, use a link:{javadocPath}/org/gradle/api/logging/LoggingManager.html[LoggingManager].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

            return GradleVersion.version(buildEnvironment.getGradle().getGradleVersion());
        }
    
        private static OutputStream teeOutput(OutputStream capture, OutputStream user) {
            if (user == null) {
                return capture;
            } else {
                return new TeeOutputStream(capture, user);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pkg/log/config.go

    	}
    
    	defaultZapLogger := zap.New(defaultLogger, opts...)
    
    	// capture global zap logging and force it through our logger
    	_ = zap.ReplaceGlobals(defaultZapLogger)
    
    	// capture standard golang "log" package output and force it through our logger
    	_ = zap.RedirectStdLog(defaultZapLogger)
    
    	// capture gRPC logging
    	if options.logGRPC {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

        const llvm::SmallVector<TF::VarHandleOp, 4>& var_handle_ops,
        func::FuncOp session_init_func) {
      // We identify the variables using (device, container, shared_name) of the
      // resource. Capture them here and use them to identify the useless
      // initializations.
      llvm::SetVector<std::tuple<llvm::StringRef, llvm::StringRef, llvm::StringRef>>
          variables;
      for (auto var_handle_op : var_handle_ops)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pilot/pkg/model/context_test.go

    			},
    		},
    		{
    			name:     "Capture Arbitrary Metadata",
    			metadata: map[string]any{"foo": "bar"},
    			out: &model.Proxy{
    				Type: "sidecar", IPAddresses: []string{"1.1.1.1"}, DNSDomain: "domain", ID: "id", IstioVersion: model.MaxIstioVersion,
    				Metadata: &model.NodeMetadata{
    					Raw: map[string]any{
    						"foo": "bar",
    					},
    				},
    			},
    		},
    		{
    			name: "Capture Labels",
    			metadata: map[string]any{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  9. src/math/big/arith_ppc64x.s

    	ADD   $-1, R7
    	ADDE  R11, R16, R20
    	CMP   R7, $0
    	MOVDU R20, 8(R10)
    	BEQ   final
    
    	MOVD  8(R8), R11
    	MOVD  8(R9), R16
    	ADDE  R11, R16, R20
    	MOVD  R20, 8(R10)
    
    final:
    	ADDZE R4              // Capture CA
    
    done:
    	MOVD  R4, c+72(FP)
    	RET
    
    // func subVV(z, x, y []Word) (c Word)
    // z[i] = x[i] - y[i] for all i, carrying
    TEXT ·subVV(SB), NOSPLIT, $0
    	MOVD  z_len+8(FP), R7 // R7 = z_len
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    				"apiserver_rerouted_request_total",
    			},
    			want: `
    			# HELP apiserver_rerouted_request_total [ALPHA] Total number of requests that were proxied to a peer kube apiserver because the local apiserver was not capable of serving it
    			# TYPE apiserver_rerouted_request_total counter
    			apiserver_rerouted_request_total{code="503"} 1
    			`,
    		},
    		{
    			desc:                 "503 unreachable peer public address",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top