Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 242 for getg (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            when:
            def p1 = container.register("task")
            def p2 = container.named("task")
            def replaced = container.replace("task")
    
            then:
            p1.get() == p2.get()
            p1.get() == replaced
            p1.get() == container.getByName("task")
        }
    
        void "fails if unknown task is requested"() {
            when:
            container.getByName("unknown")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/types.go

    	// a lifecycle that is tied to the lifecycle of the pod. For example, such
    	// a volume might contain data that gets created specifically for that pod,
    	// like secrets.
    	// But how the volume actually gets created and managed is entirely up to
    	// the driver. It might also use reference counting to share the same volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  3. cmd/object-api-interface.go

    	NoLock                              bool      // indicates to lower layers if the caller is expecting to hold locks.
    	ProxyRequest                        bool      // only set for GET/HEAD in active-active replication scenario
    	ProxyHeaderSet                      bool      // only set for GET/HEAD in active-active replication scenario
    	ReplicationRequest                  bool      // true only if replication request
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

          tensorflow::OpRegistry::Global(), tensorflow::FunctionDefLibrary());
      pflr_ = std::make_unique<tensorflow::ProcessFunctionLibraryRuntime>(
          device_mgr_.get(), tensorflow::Env::Default(), /*config=*/nullptr,
          version_or.value(), flib_def_.get(), tensorflow::OptimizerOptions());
      params_.function_library = pflr_->GetFLR(device_->name());
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.jar

    java.io.IOException; public int read(byte[], int, int) throws java.io.IOException; } META-INF/maven/org.apache.maven.wagon/wagon-webdav/pom.xml wagon-providers org.apache.maven.wagon 1.0-beta-2 4.0.0 wagon-webdav Maven Wagon WebDav Provider Wagon that gets and puts artifacts through webdav protocol Henry Isidro ******@****.*** Joakim Erdfelt ******@****.*** slide slide-webdavlib 2.1 commons-logging commons-logging 1.0.4 runtime it.could webdav 0.4 test org.mortbay.jetty jetty 4.2.12 test META-I...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    	staticStrictPolicyName = "istio_converted_static_strict" // use '_' character since those are illegal in k8s names
    )
    
    func (a *index) Policies(requested sets.Set[model.ConfigKey]) []model.WorkloadAuthorization {
    	// TODO: use many Gets instead of List?
    	cfgs := a.authorizationPolicies.List()
    	l := len(cfgs)
    	if len(requested) > 0 {
    		l = len(requested)
    	}
    	res := make([]model.WorkloadAuthorization, 0, l)
    	for _, cfg := range cfgs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/apiclient/idempotency.go

    	return func(_ context.Context) (bool, error) {
    		// First get the node object
    		ctx := context.Background()
    		n, err := client.CoreV1().Nodes().Get(ctx, nodeName, metav1.GetOptions{})
    		if err != nil {
    			*lastError = err
    			return false, nil // retry on any error
    		}
    
    		// The node may appear to have no labels at first,
    		// so we wait for it to get hostname label.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		// add post start hook to start hot reload controller
    		// adding this hook here will ensure that it gets configured exactly once
    		err = c.AddPostStartHook(
    			"start-encryption-provider-config-automatic-reload",
    			func(_ server.PostStartHookContext) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Throwables.java

            slowPointer = slowPointer.getCause();
          }
          advanceSlowPointer = !advanceSlowPointer; // only advance every other iteration
        }
        return throwable;
      }
    
      /**
       * Gets a {@code Throwable} cause chain as a list. The first entry in the list will be {@code
       * throwable} followed by its cause hierarchy. Note that this is a snapshot of the cause chain and
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    We also configure Kotlin, Java, tests and more.
    
    Our build file is beginning to grow...
    
    The more plugins we apply and the more plugins we configure, the larger it gets.
    There's also repetition in the build files of the `app` and `data-model` subprojects, especially when configuring common extensions like setting the Java version and Kotlin support.
    
    To address this, we use convention plugins.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top