Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 161 for Invert (0.3 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	// for the HPA in the queue then a new request is always dropped. Requests spend resyncPeriod
    	// in queue so HPAs are processed every resyncPeriod.
    	// Request is added here just in case last resync didn't insert request into the queue. This
    	// happens quite often because there is race condition between adding request after resyncPeriod
    	// and removing them from queue. Request can be added by resync before previous request is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

          single_host_server_def.mutable_cluster();
      tensorflow::JobDef* job_def = cluster_def->add_job();
      job_def->set_name("client");
    
      // Add a client.
      job_def->mutable_tasks()->insert(
          {0, tensorflow::strings::StrCat(
                  "localhost:", tensorflow::testing::PickUnusedPortOrDie())});
    
      tensorflow::JobDef* job_def2 = cluster_def->add_job();
      job_def2->set_name("worker");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @param path The path to convert.
         * @return The absolute path.
         */
        String absoluteProjectPath(String path);
    
        /**
         * <p>Converts a name to a project path relative to this project.</p>
         *
         * @param path The path to convert.
         * @return The relative path.
         */
        String relativeProjectPath(String path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If the resource is not created via `project.resources`, then it may not have a backing file.
    Creating a TAR tree from a resource with no backing file has been deprecated.
    Instead, convert the resource to a file and use `project.tarTree()` on the file.
    To convert the resource to a file you can use a custom task or use dependency management to download the file via a URL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener.go

    		if len(sni) == 0 {
    			return nil
    		}
    		res := sets.NewWithLength[string](len(sni))
    		for _, s := range sni {
    			if s == "*" {
    				continue
    			}
    			res.Insert(s)
    		}
    		return res
    	}
    	if !sniSet(a.sniHosts).Equals(sniSet(b.sniHosts)) {
    		return false
    	}
    
    	// Order doesn't matter. Make sure we properly handle overlapping prefixes though
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier.go

    	if createdChains.Has(chain) {
    		return
    	}
    	tx.Add(&knftables.Chain{
    		Name: chain,
    	})
    	tx.Flush(&knftables.Chain{
    		Name: chain,
    	})
    	createdChains.Insert(chain)
    }
    
    func (proxier *Proxier) setupNFTables(tx *knftables.Transaction) {
    	ipX := "ip"
    	ipvX_addr := "ipv4_addr" //nolint:stylecheck // var name intentionally resembles value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/regalloc.go

    //             b2: ... use x3 ...
    //
    // If b3 is the primary predecessor of b2, then we use x3 in b2 and
    // add a x4:CX->BX copy at the end of b4.
    // But the definition of x3 doesn't dominate b2.  We should really
    // insert an extra phi at the start of b2 (x5=phi(x3,x4):BX) to keep
    // SSA form. For now, we ignore this problem as remaining in strict
    // SSA form isn't needed after regalloc. We'll just leave the use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "default": ""
            }
          }
        },
        "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion": {
          "description": "CustomResourceConversion describes how to convert different versions of a CR.",
          "type": "object",
          "required": ["strategy"],
          "properties": {
            "strategy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	// list of init containers to keep.
    	initContainerNames := sets.New[string]()
    	for _, container := range pod.Spec.InitContainers {
    		initContainerNames.Insert(container.Name)
    	}
    	for name := range initContainerNames {
    		count := 0
    		for _, status := range podStatus.ContainerStatuses {
    			if status.Name != name ||
    				(status.State != kubecontainer.ContainerStateExited &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/runtime/mprof.go

    func SetBlockProfileRate(rate int) {
    	var r int64
    	if rate <= 0 {
    		r = 0 // disable profiling
    	} else if rate == 1 {
    		r = 1 // profile everything
    	} else {
    		// convert ns to cycles, use float64 to prevent overflow during multiplication
    		r = int64(float64(rate) * float64(ticksPerSecond()) / (1000 * 1000 * 1000))
    		if r == 0 {
    			r = 1
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top