Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for split3 (0.32 sec)

  1. src/reflect/value.go

    	fl := v.flag & flagRO
    	return Value{ptrTo(v.typ()), v.ptr, fl | flag(Pointer)}
    }
    
    // Bool returns v's underlying value.
    // It panics if v's kind is not [Bool].
    func (v Value) Bool() bool {
    	// panicNotBool is split out to keep Bool inlineable.
    	if v.kind() != Bool {
    		v.panicNotBool()
    	}
    	return *(*bool)(v.ptr)
    }
    
    func (v Value) panicNotBool() {
    	v.mustBe(Bool)
    }
    
    var bytesType = rtypeOf(([]byte)(nil))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    			OA.Checksum.ChecksumCRC32 = strings.Split(chkSums["CRC32"], "-")[0]
    		case chkSums["CRC32C"] != "":
    			OA.Checksum = new(objectAttributesChecksum)
    			OA.Checksum.ChecksumCRC32C = strings.Split(chkSums["CRC32C"], "-")[0]
    		case chkSums["SHA256"] != "":
    			OA.Checksum = new(objectAttributesChecksum)
    			OA.Checksum.ChecksumSHA1 = strings.Split(chkSums["SHA1"], "-")[0]
    		case chkSums["SHA1"] != "":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. src/net/http/server.go

    }
    
    // foreachHeaderElement splits v according to the "#rule" construction
    // in RFC 7230 section 7 and calls fn for each non-empty element.
    func foreachHeaderElement(v string, fn func(string)) {
    	v = textproto.TrimString(v)
    	if v == "" {
    		return
    	}
    	if !strings.Contains(v, ",") {
    		fn(v)
    		return
    	}
    	for _, f := range strings.Split(v, ",") {
    		if f = textproto.TrimString(f); f != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      case "${action}" in
        LOG)
          action="LOG --log-prefix "${prefix}:" --log-uid --log-tcp-options --log-ip-option"
          ;;
      esac
    
      # Deliberately allow word split here
      # shellcheck disable=SC2086
      iptables -w ${command} OUTPUT -p tcp --dport 80 -d ${METADATA_SERVER_IP} -m owner ${invert:-} --uid-owner=${METADATA_SERVER_ALLOWED_UID_RANGE:-0-2999} -j ${action}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

        // CHECK: "tf.Cast"(%{{.*}}) <{Truncate = false}> : (tensor<1x8x2xf32>) -> tensor<*xf32>
        // CHECK: (tensor<i32>, tensor<1x8x2xf32>) -> (tensor<1x8x1xf32>, tensor<1x8x1xf32>)
        %3:2 = "tf.Split"(%0, %1) {device = ""} : (tensor<i32>, tensor<*xf32>) -> (tensor<*xf32>, tensor<*xf32>)
        %4 = tensor.cast %1 : tensor<*xf32> to tensor<?x?x?xf32>
        func.return %3#0, %3#1 : tensor<*xf32>, tensor<*xf32>
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 17:24:10 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    							Claim:  "username",
    							Prefix: pointer.String("oidc:"),
    						},
    						Groups: apiserver.PrefixedClaimOrExpression{
    							Expression: `(claims.roles.split(",") + claims.other_roles.split(",")).map(role, "groups:" + role)`,
    						},
    					},
    				},
    				now: func() time.Time { return now },
    			},
    			signingKey: loadRSAPrivKey(t, "testdata/rsa_1.pem", jose.RS256),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      llvm::SmallVector<llvm::StringRef, 2> input_names;
      llvm::SmallVector<llvm::StringRef, 2> output_names;
      if (auto str =
              mlir::dyn_cast_or_null<mlir::StringAttr>(dict_attr.get("inputs"))) {
        str.getValue().split(input_names, ',', /*MaxSplit=*/-1,
                             /*KeepEmpty=*/false);
        if (input_names.size() != fn.getNumArguments()) {
          fn.emitWarning() << "invalid entry function specification";
          return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    // not from the low-level system calls used by the runtime.
    //
    // Entersyscall cannot split the stack: the save must
    // make g->sched refer to the caller's stack segment, because
    // entersyscall is going to return immediately after.
    //
    // Nothing entersyscall calls can split the stack either.
    // We cannot safely move the stack during an active call to syscall,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    			if len(tt.destRule.GetSubsets()) > 0 {
    				for _, c := range subsetClusters {
    					var subsetName string
    					if tt.clusterMode == DefaultClusterMode {
    						subsetName = strings.Split(c.Name, "|")[2]
    					} else {
    						subsetName = strings.Split(c.Name, ".")[2]
    					}
    					for _, subset := range tt.destRule.Subsets {
    						if subset.Name == subsetName {
    							if subset.GetTrafficPolicy().GetTls() != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/horizontal_test.go

    	}
    	return &directionBehavior
    }
    
    // generateEventsUniformDistribution generates events that uniformly spread in the time window
    //
    //	time.Now()-periodSeconds  ; time.Now()
    //
    // It split the time window into several segments (by the number of events) and put the event in the center of the segment
    // it is needed if you want to create events for several policies (to check how "outdated" flag is set).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
Back to top