Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for split3 (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/printers/internalversion/printers.go

    		lbIps := loadBalancerStatusStringer(svc.Status.LoadBalancer, wide)
    		if len(svc.Spec.ExternalIPs) > 0 {
    			results := []string{}
    			if len(lbIps) > 0 {
    				results = append(results, strings.Split(lbIps, ",")...)
    			}
    			results = append(results, svc.Spec.ExternalIPs...)
    			return strings.Join(results, ",")
    		}
    		if len(lbIps) > 0 {
    			return lbIps
    		}
    		return "<pending>"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. go.sum

    github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA=
    github.com/vbatts/tar-split v0.11.5 h1:3bHCTIheBm1qFTcgh9oPu+nNBtX+XJIupG/vacinCts=
    github.com/vbatts/tar-split v0.11.5/go.mod h1:yZbwRsSeGjusneWgA781EKej9HF8vme8okylkAeNKLk=
    github.com/vektah/gqlparser v1.1.2/go.mod h1:1ycwN7Ij5njmMkPPAOaRFY4rET2Enx7IkVv3vaXspKw=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	nsec *= 100
    	return nsec
    }
    
    func NsecToFiletime(nsec int64) (ft Filetime) {
    	// convert into 100-nanosecond
    	nsec /= 100
    	// change starting time to January 1, 1601
    	nsec += 116444736000000000
    	// split into high / low
    	ft.LowDateTime = uint32(nsec & 0xffffffff)
    	ft.HighDateTime = uint32(nsec >> 32 & 0xffffffff)
    	return ft
    }
    
    type Win32finddata struct {
    	FileAttributes    uint32
    	CreationTime      Filetime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    func roundUp(x, to uint32) uint32 {
    	if to == 0 || to&(to-1) != 0 {
    		log.Fatalf("rounded up to a value that is not a power of 2: %d\n", to)
    	}
    	return (x + to - 1) &^ (to - 1)
    }
    
    // splitImm24uScaled splits an immediate into a scaled 12 bit unsigned lo value
    // and an unscaled shifted 12 bit unsigned hi value. These are typically used
    // by adding or subtracting the hi value and using the lo value as the offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top