Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 237 for bargs (0.69 sec)

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

    			return "", nil, err
    		}
    		args = append(args, "-importcfg", objdir+"importcfg")
    	}
    	if embedcfg != nil {
    		if err := sh.writeFile(objdir+"embedcfg", embedcfg); err != nil {
    			return "", nil, err
    		}
    		args = append(args, "-embedcfg", objdir+"embedcfg")
    	}
    	if ofile == archive {
    		args = append(args, "-pack")
    	}
    	if asmhdr {
    		args = append(args, "-asmhdr", objdir+"go_asm.h")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. internal/event/target/amqp.go

    	if err = ch.ExchangeDeclare(target.args.Exchange, target.args.ExchangeType, target.args.Durable,
    		target.args.AutoDeleted, target.args.Internal, target.args.NoWait, nil); err != nil {
    		return err
    	}
    
    	if err = ch.Publish(target.args.Exchange, target.args.RoutingKey, target.args.Mandatory,
    		target.args.Immediate, amqp091.Publishing{
    			Headers:      headers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_test.cc

    std::vector<XlaCompiler::Argument> SampleArgsForAddXY() {
      std::vector<XlaCompiler::Argument> args(2);
      args[0].kind = XlaCompiler::Argument::kParameter;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({2});
      args[1].kind = XlaCompiler::Argument::kParameter;
      args[1].type = DT_INT32;
      args[1].shape = TensorShape({2});
      return args;
    }
    
    class MockXlaDeviceExecutablePersistor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/input.go

    	var args [][]Token
    	// One macro argument per iteration. Collect them all and check counts afterwards.
    	for argNum := 0; ; argNum++ {
    		tokens, tok := in.collectArgument(macro)
    		args = append(args, tokens)
    		if tok == ')' {
    			break
    		}
    	}
    	// Zero-argument macros are tricky.
    	if len(macro.args) == 0 && len(args) == 1 && args[0] == nil {
    		args = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    	if v.Args == nil {
    		v.resetArgs() // use argstorage
    	}
    	v.Args = append(v.Args, w1, w2, w3)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg4(w1, w2, w3, w4 *Value) {
    	v.Args = append(v.Args, w1, w2, w3, w4)
    	w1.Uses++
    	w2.Uses++
    	w3.Uses++
    	w4.Uses++
    }
    
    //go:noinline
    func (v *Value) AddArg5(w1, w2, w3, w4, w5 *Value) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

            this(fileCollectionFactory, new DefaultJavaDebugOptions());
        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/functional-control-flow-to-regions.mlir

      // CHECK: ^bb0([[CARG0:%.*]]: tensor<4xf32>
      // CHECK: [[Result1:%.*]] = func.call @testWhileCond([[CARG0]])
      // CHECK: "tf.Yield"([[Result1]], [[CARG0]])
      // CHECK: ^bb0(%[[BARG0:.*]]: tensor<4xf32>
      // CHECK: [[Result2:%.*]] = func.call @testWhileBody(%[[BARG0]])
      // CHECK: "tf.Yield"([[Result2]])
      // CHECK: return [[Result0]]
      func.return %1 : tensor<*xf32>
    }
    
    // -----
    
    // While with non tensor<i1> condition
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 21:59:28 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

            given:
            sourceFile << """
                #define HEADER_123 "hello.h"
                #define HEADER(X, Y) X ## Y
                #include HEADER(HEADER_, 123)
            """
    
            expect:
            resolve() == [header]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

            // TODO: support at least minimal overload resolution?
            val args = functionCall.args
    
            // TODO: lambdas are handled in a special way and don't participate in signature matching now
            val signatureSizeMatches = preFilterSignatures(matchingMembers, args)
    
            return chooseMatchingOverloads(receiver, signatureSizeMatches, args, argResolution)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/crypto/tls/key_schedule_test.go

    	ae 99 01 41 c5 92 4d 57 bb 6f a3 1b 9e 5f 9d`))
    
    	type args struct {
    		secret     []byte
    		label      string
    		transcript hash.Hash
    	}
    	tests := []struct {
    		name string
    		args args
    		want []byte
    	}{
    		{
    			`derive secret for handshake "tls13 derived"`,
    			args{
    				parseVector(`PRK (32 octets):  33 ad 0a 1c 60 7e c0 3b 09 e6 cd 98 93 68 0c e2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 13.2K bytes
    - Viewed (0)
Back to top