Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for ToOpts (0.29 sec)

  1. cmd/xl-storage.go

    		defer metaDataPoolPut(buf)
    		if err != nil {
    			return err
    		}
    
    		return s.WriteAll(ctx, volume, pathJoin(path, xlStorageFormatFile), buf)
    	}
    
    	if opts.UndoWrite && opts.OldDataDir != "" {
    		return renameAll(pathJoin(filePath, opts.OldDataDir, xlStorageFormatFileBackup), pathJoin(filePath, xlStorageFormatFile), filePath)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (gradleVersionOverride != null) {
                executer.withGradleVersionOverride(gradleVersionOverride);
            }
    
            executer.startBuildProcessInDebugger(opts -> debug.copyTo(opts))
                .startLauncherInDebugger(opts -> debugLauncher.copyTo(opts))
                .withProfiler(profiler)
                .withForceInteractive(interactive);
    
            if (!checkDeprecations) {
                executer.noDeprecationChecks();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    				return err
    			}
    
    			writer := cmd.OutOrStdout()
    
    			podLabels := klabels.Set(pod.ObjectMeta.Labels)
    			annotations := klabels.Set(pod.ObjectMeta.Annotations)
    			opts.Revision = GetRevisionFromPodAnnotation(annotations)
    
    			printPod(writer, pod, opts.Revision)
    
    			svcs, err := client.Kube().CoreV1().Services(ns).List(context.TODO(), metav1.ListOptions{})
    			if err != nil {
    				return err
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pod_workers.go

    	opts := s.activeUpdate
    	if opts == nil {
    		opts = &UpdatePodOptions{}
    		s.activeUpdate = opts
    	}
    
    	// UpdatePodOptions states (and UpdatePod enforces) that either Pod or RunningPod
    	// is set, and we wish to preserve the most recent Pod we have observed, so only
    	// overwrite our Pod when we have no Pod or when RunningPod is nil.
    	if opts.Pod == nil || other.RunningPod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  5. tensorflow/c/c_api_function_test.cc

                                   inputs.size(), inputs.data(), outputs.size(),
                                   outputs.data(), output_names_ptr,
                                   /*opts=*/nullptr, /*description=*/nullptr, s_);
        delete[] output_names_ptr;
        if (expect_failure) {
          ASSERT_EQ(func_, nullptr);
          return;
        }
    
        ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/BUILD

        protodeps = tf_additional_all_protos() + ["@local_xla//xla/service:hlo_proto"],
        visibility = ["//visibility:public"],
    )
    
    cc_library(
        name = "device_compiler",
        hdrs = ["device_compiler.h"],
        copts = tf_copts(),
        visibility = [
            ":internal",
            "//tensorflow/core/common_runtime/next_pluggable_device:__pkg__",
        ],
        deps = [
            ":device_compilation_cache",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 61.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    			"\tor run 'go help get' or 'go help install'.")
    	}
    
    	dropToolchain, queries := parseArgs(ctx, args)
    	opts := modload.WriteOpts{
    		DropToolchain: dropToolchain,
    	}
    	for _, q := range queries {
    		if q.pattern == "toolchain" {
    			opts.ExplicitToolchain = true
    		}
    	}
    
    	r := newResolver(ctx, queries)
    	r.performLocalQueries(ctx)
    	r.performPathQueries(ctx)
    
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    		return false
    	}
    }
    
    type brokenSigner struct{ crypto.Signer }
    
    func (s brokenSigner) Sign(rand io.Reader, digest []byte, opts crypto.SignerOpts) (signature []byte, err error) {
    	// Replace opts with opts.HashFunc(), so rsa.PSSOptions are discarded.
    	return s.Signer.Sign(rand, digest, opts.HashFunc())
    }
    
    // TestPKCS1OnlyCert uses a client certificate with a broken crypto.Signer that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    // NewSchedulingQueue initializes a priority queue as a new scheduling queue.
    func NewSchedulingQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option) SchedulingQueue {
    	return NewPriorityQueue(lessFn, informerFactory, opts...)
    }
    
    // NominatedNodeName returns nominated node name of a Pod.
    func NominatedNodeName(pod *v1.Pod) string {
    	return pod.Status.NominatedNodeName
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	controller.opts.XDSUpdater.(*xdsfake.Updater).WaitOrFail(t, "service")
    }
    
    func createServiceWait(controller *FakeController, name, namespace string, labels, annotations map[string]string,
    	ports []int32, selector map[string]string, t *testing.T,
    ) {
    	t.Helper()
    	createService(controller, name, namespace, labels, annotations, ports, selector, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top