Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 138 for updatePod (0.32 sec)

  1. plugin/pkg/admission/resourcequota/admission_test.go

    		t.Errorf("Error occurred while creating admission plugin: %v", err)
    	}
    
    	informerFactory.Core().V1().ResourceQuotas().Informer().GetIndexer().Add(resourceQuota)
    
    	// old service was a load balancer, but updated version is a node port.
    	existingService := &api.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "service", Namespace: "test", ResourceVersion: "1"},
    		Spec:       api.ServiceSpec{Type: api.ServiceTypeLoadBalancer},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  2. cmd/iam.go

    // where the parent user is the DN of the actual LDAP user. The parent user
    // itself cannot login, but the policy associated with them determines the base
    // policy for the STS credential. The policy mapping can be updated by the
    // administrator.
    //
    // - from `Subject.CommonName` field from the STS request for
    // AssumeRoleWithCertificate. In this case, the policy for the STS credential
    // has the same name as the value of this field.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		map[string]string{},
    		true,
    		corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod4"))
    
    	s.addWaypoint(t, "10.0.0.2", "waypoint-ns", constants.AllTraffic, true)
    	// All these workloads updated, so push them
    	s.assertEvent(t, s.podXdsName("pod1"),
    		s.podXdsName("pod2"),
    		s.podXdsName("pod3"),
    	)
    
    	// Add a waypoint proxy pod for namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api_test.cc

                      server_def_0, tensorflow::Env::Default(), &worker_server1)
                      .ok());
      ASSERT_TRUE(worker_server1->Start().ok());
    
      // 5a. Update `ctx_0` with updated `server_def_0`.
      {
        server_def_0.set_task_index(0);
        string serialized_update = server_def_0.SerializeAsString();
        TF_Status* status = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/MapMakerInternalMap.java

      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
       * ordering information is updated. This is used to avoid lock contention by recording a memento
       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // body. So, loop_operands_2 is only partially updated here. We'll finish
      // updating this after core_tpu() is called in the new while body.
      std::vector<Value> loop_operands_2 = loop_operands_1;
      for (auto p : loop_arg_update_map_non_tpu)
        loop_operands_2[p.second] = non_tpu_res_1[p.first];
    
      // The second conditional evaluation. The assumption here is that the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
       * ordering information is updated. This is used to avoid lock contention by recording a memento
       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // It is no longer used by "go test" but preserved, as much as possible, for other
    // systems that simulate "go test" using Main, but Main sometimes cannot be updated as
    // new functionality is added to the testing package.
    // Systems simulating "go test" should be updated to use MainStart.
    func Main(matchString func(pat, str string) (bool, error), tests []InternalTest, benchmarks []InternalBenchmark, examples []InternalExample) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. configure.py

    
    # Disable clang extension that rejects type definitions within offsetof.
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Still required for clang-17.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp. See
    # https://github.com/protocolbuffers/upb/blob/9effcbcb27f0a665f9f345030188c0b291e32482/upb/upb.c#L183.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. pkg/apis/batch/validation/validation.go

    	allErrs = append(allErrs, validateCronJobSpec(&job.Spec, &oldJob.Spec, field.NewPath("spec"), opts)...)
    
    	// skip the 52-character name validation limit on update validation
    	// to allow old cronjobs with names > 52 chars to be updated/deleted
    	return allErrs
    }
    
    // validateCronJobSpec validates a CronJobSpec and returns an ErrorList with any errors.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top