Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 124 for createfing (0.24 sec)

  1. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			_, err := store.Update(*cfg)
    			if err != nil {
    				t.Fatalf("error occurred updating ServiceEntry config: %v", err)
    			}
    		} else if err != nil {
    			t.Fatalf("error occurred creating ServiceEntry config: %v", err)
    		}
    	}
    }
    
    func callInstanceHandlers(instances []*model.WorkloadInstance, sd *Controller, ev model.Event, t testing.TB) {
    	t.Helper()
    	for _, instance := range instances {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    			diff = int32(len(indexesToAdd))
    		}
    
    		jm.expectations.ExpectCreations(logger, jobKey, int(diff))
    		errCh := make(chan error, diff)
    		logger.V(4).Info("Too few pods running", "key", jobKey, "need", wantActive, "creating", diff)
    
    		wait := sync.WaitGroup{}
    
    		active += diff
    
    		podTemplate := job.Spec.Template.DeepCopy()
    		if isIndexedJob(job) {
    			addCompletionIndexEnvVariables(podTemplate)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

            FlatSymbolRefAttr::get(new_quant_func_name));
    
        return success();
      }
    
      // For composite functions followed by Dequantize ops, merges the Dequantize
      // op into the functions by creating quantized functions with float output.
      LogicalResult mergeDequantizeOpFollowingQuantizedFunction(
          TF::PartitionedCallOp call_op, const SmallVector<Value, 4>& args,
          PatternRewriter& rewriter) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. tests/integration/security/authz_test.go

    							param.Namespace.String(): apps.Ns2.Namespace,
    						})).
    						// Allow /policy-istio-system-<svc> for all services in all namespaces. Just using ns1 to avoid
    						// creating duplicate resources.
    						Source(config.File("testdata/authz/workload-system-ns.yaml.tmpl").WithParams(param.Params{
    							param.Namespace.String(): istio.ClaimSystemNamespaceOrFail(t, t),
    						})).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

    
    class QuantizedModelTest(test.TestCase, parameterized.TestCase):
      """Base test class for TF-quant tests."""
    
      def setUp(self) -> None:
        super().setUp()
    
        # Many test cases for quantization involve creating and saving the input
        # model and saving the output quantized model. These two member
        # attributes can be used to specify the paths for such models,
        # respectively. These paths will be cleaned up after each test case.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_windows.go

    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func CreateFile(name *uint16, access uint32, mode uint32, sa *SecurityAttributes, createmode uint32, attrs uint32, templatefile int32) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (1)
  7. hack/local-up-cluster.sh

      echo "NodeLocalDNS addon successfully deployed."
      rm nodelocaldns.yaml
    }
    
    function start_csi_snapshotter {
        if [[ "${ENABLE_CSI_SNAPSHOTTER}" = true ]]; then
            echo "Creating Kubernetes-CSI snapshotter"
            ${KUBECTL} --kubeconfig="${CERT_DIR}/admin.kubeconfig" apply -f "${KUBE_ROOT}/cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/apis/batch/validation/validation.go

    	if len(cronJob.ObjectMeta.Name) > apimachineryvalidation.DNS1035LabelMaxLength-11 {
    		// The cronjob controller appends a 11-character suffix to the cronjob (`-$TIMESTAMP`) when
    		// creating a job. The job name length limit is 63 characters.
    		// Therefore cronjob names must have length <= 63-11=52. If we don't validate this here,
    		// then job creation will fail later.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_mounter_test.go

    			&corev1.Pod{ObjectMeta: meta.ObjectMeta{UID: "1", Namespace: testns}},
    			volume.VolumeOptions{},
    		)
    		if err != nil {
    			t.Fatalf("Error creating a new mounter: %s", err)
    		}
    
    		csiMounter := mounter.(*csiMountMgr)
    
    		// Check to see if we can obtain the CSIDriver, along with examining its FSGroupPolicy
    		fsGroup, err := csiMounter.getFSGroupPolicy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * your HTTP calls. This is because each client holds its own connection pool and thread pools.
     * Reusing connections and threads reduces latency and saves memory. Conversely, creating a client
     * for each request wastes resources on idle pools.
     *
     * Use `new OkHttpClient()` to create a shared instance with the default settings:
     *
     * ```java
     * // The singleton HTTP client.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top