Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 962 for Handles (0.27 sec)

  1. pilot/pkg/bootstrap/istio_ca.go

    			// TODO(jaellio): Currently, when the USE_CACERTS_FOR_SELF_SIGNED_CA flag is true istiod
    			// handles loading and updating the "cacerts" secret with the "istio-generated" key the
    			// same way it handles the "istio-ca-secret" secret. Isitod utilizes a secret watch instead
    			// of file watch to check for secret updates. This may change in the future, and istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. cmd/bucket-policy-handlers_test.go

    			t.Fatalf("Test %d: Failed to create HTTP request for GetBucketPolicyHandler: <ERROR> %v", i+1, err)
    		}
    		// Since `apiRouter` satisfies `http.Handler` it has a ServeHTTP to execute the logic of the handler.
    		// Call the ServeHTTP to execute the handler, GetBucketPolicyHandler handles the request.
    		apiRouter.ServeHTTP(recV4, reqV4)
    		// Assert the response code with the expected status.
    		if recV4.Code != testCase.expectedRespStatus {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. pkg/volume/configmap/configmap.go

    func (sv *configMapVolume) GetPath() string {
    	return sv.plugin.host.GetPodVolumeDir(sv.podUID, utilstrings.EscapeQualifiedName(configMapPluginName), sv.volName)
    }
    
    // configMapVolumeMounter handles retrieving secrets from the API server
    // and placing them into the volume on the host.
    type configMapVolumeMounter struct {
    	*configMapVolume
    
    	source       v1.ConfigMapVolumeSource
    	pod          v1.Pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. src/math/big/ftoa.go

    		prec = 6 // default precision for 'e', 'f'
    	}
    
    	switch format {
    	case 'e', 'E', 'f', 'b', 'p', 'x':
    		// nothing to do
    	case 'F':
    		// (*Float).Text doesn't support 'F'; handle like 'f'
    		format = 'f'
    	case 'v':
    		// handle like 'g'
    		format = 'g'
    		fallthrough
    	case 'g', 'G':
    		if !hasPrec {
    			prec = -1 // default precision for 'g', 'G'
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            and: "Server handles requests"
            expectModuleServed(module)
    
            and:
            run 'retrieve'
    
            then:
            file('build').assertHasDescendants('testproject-1.0-SNAPSHOT.jar')
            def snapshot = file('build/testproject-1.0-SNAPSHOT.jar').assertIsCopyOf(module.artifactFile).snapshot()
    
            when: "Server handles requests"
            server.resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisTest.groovy

            ])
            def deps = a.findTransitiveDependents(["Foo"], [:])
    
            expect:
            deps.getAllDependentClasses() == [] as Set
        }
    
        def "handles dependency cycles"() {
            def a = analysis([
                "Foo": dependentClasses([] as Set, ["Bar"] as Set),
                "Bar": dependentClasses([] as Set, ["Baz"] as Set),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

      func.setType(FunctionType::get(func.getContext(), arg_types, result_types));
    }
    
    void HandleFuncOp(Operation* op) {
      auto func = llvm::cast<func::FuncOp>(op);
      UpdateFuncType(func);
    }
    
    // Handles cast op between the first convolution and the block argument.
    LogicalResult HandleCast(TF::CastOp cast_op, ArrayRef<int64_t> new_shape) {
      auto cast_input = cast_op.getX();
      // Update input type.
      auto transform_result_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

      // Pack 3 variable handles into one TFE_TensorHandle.
      // When remote is false, function device is placed on task0. Handle types are
      // REMOTE, REMOTE, LOCAL on task0. When remote is true, function device is
      // placed on task1, Handle types are LOCAL, REMOTE, LOCAL on task1.
      int num_replicas = 3;
      std::vector<TFE_TensorHandle*> handles = {h0, h1, h2};
      TFE_TensorHandle* packed_handle =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption.go

    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    )
    
    const message = "Preempted in order to admit critical pod"
    
    // CriticalPodAdmissionHandler is an AdmissionFailureHandler that handles admission failure for Critical Pods.
    // If the ONLY admission failures are due to insufficient resources, then CriticalPodAdmissionHandler evicts pods
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. pkg/kubelet/prober/worker.go

    	"k8s.io/component-base/metrics"
    	"k8s.io/klog/v2"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/prober/results"
    )
    
    // worker handles the periodic probing of its assigned container. Each worker has a go-routine
    // associated with it which runs the probe loop until the container permanently terminates, or the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top