Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for cont (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		{think: time.Second, pad: 0, finalSeats: 2, conc: 2, nClients: 2},
    		{think: 0, pad: time.Second, finalSeats: 1, conc: 1, nClients: 1, exp: flts(0.5)},
    		{think: 0, pad: time.Second, finalSeats: 1, conc: 2, nClients: 1},
    		{think: 0, pad: time.Second, finalSeats: 2, conc: 2, nClients: 1, exp: flts(0.5)},
    		{think: 0, pad: time.Second, finalSeats: 1, conc: 1, nClients: 2, exp: flts(0.25, 0.25)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewritedec64.go

    		v.AddArg2(v0, v3)
    		return true
    	}
    }
    func rewriteValuedec64_OpArg(v *Value) bool {
    	b := v.Block
    	config := b.Func.Config
    	typ := &b.Func.Config.Types
    	// match: (Arg {n} [off])
    	// cond: is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")
    	// result: (Int64Make (Arg <typ.Int32> {n} [off+4]) (Arg <typ.UInt32> {n} [off]))
    	for {
    		off := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		val  string // constant value
    	}{
    		{`package a0; const _ = false`, `false`, `untyped bool`, `false`},
    		{`package a1; const _ = 0`, `0`, `untyped int`, `0`},
    		{`package a2; const _ = 'A'`, `'A'`, `untyped rune`, `65`},
    		{`package a3; const _ = 0.`, `0.`, `untyped float`, `0`},
    		{`package a4; const _ = 0i`, `0i`, `untyped complex`, `(0 + 0i)`},
    		{`package a5; const _ = "foo"`, `"foo"`, `untyped string`, `"foo"`},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/math_grad.cc

    Status MatMulGradHelper(const Scope& scope, const bool is_batch,
                            const Output& x0, const bool adj_x0, const Output& x1,
                            const bool adj_x1, const DataType x_data_type,
                            const Output& y0, const bool adj_y0, const Output& y1,
                            const bool adj_y1, const DataType y_data_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm.s

    //	}
    //	LTYPE1 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	ADD	$1, R2
    	ADD	R1<<R2, R3
    	ADD	R1>>R2, R3
    	ADD	R1@>R2, R3
    	ADD	R1->R2, R3
    	ADD	R1, R2
    
    //
    // MVN
    //
    //	LTYPE2 cond imsr ',' reg
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    	CLZ	R1, R2
    
    //
    // MOVW
    //
    //	LTYPE3 cond gen ',' gen
    //	{
    //		outcode($1, $2, &$3, 0, &$5);
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> MergeArgResourceUseInfo(
        const llvm::SmallDenseMap<int64_t, ResourceArgUseInfo>& infos0,
        const llvm::SmallDenseMap<int64_t, ResourceArgUseInfo>& infos1) {
      llvm::SmallDenseMap<int64_t, ResourceArgUseInfo> result;
      for (const auto& entry : infos0) {
        auto info1_it = infos1.find(entry.getFirst());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public void runDependencyActions() {
            runActionInHierarchy(conf -> {
                conf.defaultDependencyActions.execute(conf.dependencies);
                conf.withDependencyActions.execute(conf.dependencies);
    
                // Discard actions after execution
                conf.defaultDependencyActions = ImmutableActionSet.empty();
                conf.withDependencyActions = ImmutableActionSet.empty();
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      $search_list = (Get-DnsClient).ConnectionSpecificSuffixSearchList
      $conf = ""
      ForEach ($ip in $server_ips)  {
        $conf = $conf + "nameserver $ip`r`n"
      }
      $conf = $conf + "search $search_list"
      # Do not put hostdns.conf into the CNI config directory so as to
      # avoid the container runtime treating it as CNI config.
      $hostdns_conf = "${env:CNI_DIR}\hostdns.conf"
      New-Item -Force -ItemType file ${hostdns_conf} | Out-Null
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

        -> (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>) {
      // CHECK-NEXT: %[[CONST:.*]] = "tf.Const"()
      %constant = "tf.Const"() {value = dense<0.0> : tensor<4xf32>} : () -> tensor<4xf32>
      "tf.AssignVariableOp"(%arg0, %constant) : (tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>) -> ()
      // CHECK-NEXT: return %[[CONST]], %[[CONST]]
      func.return %arg0, %constant : tensor<*x!tf_type.resource<tensor<4xf32>>>, tensor<4xf32>
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      return func_op;
    }
    
    TF::StatefulPartitionedCallOp EncapsulateOpsInFunc(
        OpBuilder& builder, SymbolTable& symbol_table,
        const llvm::SetVector<Operation*>& ops,
        const llvm::SetVector<Value>& inputs, const llvm::SetVector<Value>& outputs,
        func::FuncOp parent_func, ModuleOp module, const std::string& name,
        bool flag_for_inlining) {
      // Moves all of the Operations in 'ops' into a newly created func.FuncOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top