Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 132 for Removes (0.18 sec)

  1. src/cmd/go/internal/work/exec.go

    	// is failing with:
    	//   Unable to remove existing file: Invalid argument
    	tmp := os.DevNull
    	if runtime.GOOS == "windows" || runtime.GOOS == "ios" {
    		f, err := os.CreateTemp(b.WorkDir, "")
    		if err != nil {
    			return false
    		}
    		f.Close()
    		tmp = f.Name()
    		defer os.Remove(tmp)
    	}
    
    	cmdArgs := str.StringList(compiler, flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/net/http/server.go

    func cleanPath(p string) string {
    	if p == "" {
    		return "/"
    	}
    	if p[0] != '/' {
    		p = "/" + p
    	}
    	np := path.Clean(p)
    	// path.Clean removes trailing slash except for root;
    	// put the trailing slash back if necessary.
    	if p[len(p)-1] == '/' && np != "/" {
    		// Fast path for common case of p being the string we want:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        return false;
      auto i1 = tail_type.getShape().rbegin(), e1 = tail_type.getShape().rend();
      auto i2 = full_type.getShape().rbegin();
      return std::equal(i1, e1, i2);
    }
    
    // This function removes explicit broadcasting on type1 and returns whether if
    // the reduced `type1` dimensions are the same as the ending dimensions
    // of `type2`.
    bool IsReducedTailOfShape(Type type1, Type type2) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

                                          SameOperandsAndResultsScale]> {
      let summary = "Removes dimensions of size 1 from the shape of a tensor.";
    
      let description = [{
    Given a tensor `input`, this operation returns a tensor of the same type with
    all dimensions of size 1 removed. If you don't want to remove all size 1
    dimensions, you can remove specific size 1 dimensions by specifying
    `squeeze_dims`.
    
    For example:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    	}
    	if gp.lockedm != 0 {
    		// Hands off own p to the locked m,
    		// then blocks waiting for a new p.
    		startlockedm(gp)
    		goto top
    	}
    
    	execute(gp, inheritTime)
    }
    
    // dropg removes the association between m and the current goroutine m->curg (gp for short).
    // Typically a caller sets gp's status away from Grunning and then
    // immediately calls dropg to finish the job. The caller is also responsible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    	// part of rule as they may have been removed from latest updated one
    	for id, rl := range rMap {
    		if !rl.Expiration.IsNull() || !rl.NoncurrentVersionExpiration.IsNull() {
    			if _, ok := newRMap[id]; !ok {
    				// if rule getting removed was pure expiry rule (may be got to this site
    				// as part of replication of expiry rules), remove it. Otherwise remove
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "description": "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed. Finalizers may be processed and removed in any order.  Order is NOT enforced because it introduces significant risk of stuck finalizers. finalizers is a shared field, any actor with permission can reorder it....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	// The pod directory should not be removed.
    	pods = []*v1.Pod{}
    	testKubelet.fakeRuntime.PodList = []*containertest.FakePod{{Pod: runningPod, NetnsPath: ""}}
    	syncAndVerifyPodDir(t, testKubelet, pods, []*v1.Pod{apiPod}, true)
    
    	// The pod is deleted and also not active on the node. The pod directory
    	// should be removed.
    	pods = []*v1.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top