Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for returns_ (0.28 sec)

  1. src/net/http/h2_bundle.go

    	if len(s) != len(t) {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    		if http2lower(s[i]) != http2lower(t[i]) {
    			return false
    		}
    	}
    	return true
    }
    
    // lower returns the ASCII lowercase version of b.
    func http2lower(b byte) byte {
    	if 'A' <= b && b <= 'Z' {
    		return b + ('a' - 'A')
    	}
    	return b
    }
    
    // isASCIIPrint returns whether s is ASCII and printable according to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	e := t.Kind()
    	switch e {
    	default:
    		return e
    	case types.TINT:
    		if s.config.PtrSize == 8 {
    			return types.TINT64
    		}
    		return types.TINT32
    	case types.TUINT:
    		if s.config.PtrSize == 8 {
    			return types.TUINT64
    		}
    		return types.TUINT32
    	case types.TUINTPTR:
    		if s.config.PtrSize == 8 {
    			return types.TUINT64
    		}
    		return types.TUINT32
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      return unpacked_indices;
    }
    
    // Returns size of dimension at the specified index, if ranked tensor.
    // Otherwise, returns -1.
    //
    // Aborts if the type is ranked but doesn't have the dimension.
    int64_t GetDimSize(Type ty, int64_t index) {
      RankedTensorType ranked_ty = mlir::dyn_cast<RankedTensorType>(ty);
      if (!ranked_ty) return -1;
    
      return ranked_ty.getDimSize(index);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  4. doc/go_spec.html

    Instead, deferred functions are invoked immediately before
    the surrounding function returns, in the reverse order
    they were deferred. That is, if the surrounding function
    returns through an explicit <a href="#Return_statements">return statement</a>,
    deferred functions are executed <i>after</i> any result parameters are set
    by that return statement but <i>before</i> the function returns to its caller.
    If a deferred function value evaluates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

    "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a consistent list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. pkg/apis/core/validation/validation.go

    		if source.PersistentVolumeClaim != nil ||
    			source.Ephemeral != nil {
    			return true, true
    		}
    		return true, false
    	}
    	return false, false
    }
    
    func mountNameAlreadyExists(name string, devices map[string]string) bool {
    	if _, ok := devices[name]; ok {
    		return true
    	}
    	return false
    }
    
    func mountPathAlreadyExists(mountPath string, devices map[string]string) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"previous":                     "Return previous terminated container logs. Defaults to false.",
    	"sinceSeconds":                 "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. pkg/apis/core/v1/zz_generated.conversion.go

    		return Convert_v1_AppArmorProfile_To_core_AppArmorProfile(a.(*v1.AppArmorProfile), b.(*core.AppArmorProfile), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.AppArmorProfile)(nil), (*v1.AppArmorProfile)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_core_AppArmorProfile_To_v1_AppArmorProfile(a.(*core.AppArmorProfile), b.(*v1.AppArmorProfile), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    t=n):this.parent.insertBefore(t,n);r||this.remove()}return this}next(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e+1]}prev(){if(!this.parent)return;let e=this.parent.index(this);return this.parent.nodes[e-1]}before(e){return this.parent.insertBefore(this,e),this}after(e){return this.parent.insertAfter(this,e),this}root(){let e=this;for(;e.parent&&e.parent.type!=="document";)e=e.parent;return e}raw(e,t){return new l0().raw(this,e,t)}cleanRaws(e){delete this.raws.before,delete...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    	case OpMul8:
    		v.Op = OpPPC64MULLW
    		return true
    	case OpNeg16:
    		v.Op = OpPPC64NEG
    		return true
    	case OpNeg32:
    		v.Op = OpPPC64NEG
    		return true
    	case OpNeg32F:
    		v.Op = OpPPC64FNEG
    		return true
    	case OpNeg64:
    		v.Op = OpPPC64NEG
    		return true
    	case OpNeg64F:
    		v.Op = OpPPC64FNEG
    		return true
    	case OpNeg8:
    		v.Op = OpPPC64NEG
    		return true
    	case OpNeq16:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top