Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 880 for bargs (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/shape_inference.mlir

          ^bb0(%barg0: tensor<i32>, %barg1: tensor<!tf_type.variant<tensor<?x1xf32>>>): // no predeceessors
            %cond = "tf.Less"(%barg0, %size) : (tensor<i32>, tensor<i32>) -> tensor<i1>
            "tf.Yield"(%cond) : (tensor<i1>) -> ()
        }, {
          ^bb0(%barg0: tensor<i32>, %barg1: tensor<!tf_type.variant<tensor<?x1xf32>>>): // no predeceessors
          %index = "tf.AddV2"(%barg0, %one) : (tensor<i32>, tensor<i32>) -> tensor<i32>
    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. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ExecSpec.java

         * @param args args for the command
         * @return this
         */
        ExecSpec args(Iterable<?> args);
    
        /**
         * Sets the arguments for the command to be executed.
         *
         * @param args args for the command
         * @return this
         * @since 4.0
         */
        ExecSpec setArgs(List<String> args);
    
        /**
         * Sets the arguments for the command to be executed.
         *
         * @param args args for the command
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/ytab.go

    	// If we had exact yt.args length, it could be `yt.argc != len(args)`.
    	if len(args) < len(yt.args) && yt.args[len(args)] != Yxxx {
    		return false
    	}
    
    	for i := range args {
    		if ycover[args[i]+int(yt.args[i])] == 0 {
    			return false
    		}
    	}
    
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/process/internal/DefaultExecHandleSpec.groovy

            }
        }
    
        private List args(Class mainClass, String... args) {
            GUtil.flattenElements(mainClass.getName(), args)
        }
    
        public static class BrokenApp {
            public static void main(String[] args) {
                System.exit(72)
            }
        }
    
        public static class SlowApp {
            public static void main(String[] args) throws InterruptedException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 03:44:52 UTC 2021
    - 14.9K bytes
    - Viewed (0)
  5. internal/config/policy/plugin/config.go

    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes Authorization Management Plugin.
    func New(args Args) *AuthZPlugin {
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	return &AuthZPlugin{
    		args:   args,
    		client: &http.Client{Transport: args.Transport},
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/cmds.go

    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    			return nil, doCompare(s, true, args...)
    		})
    }
    
    func doCompare(s *State, env bool, args ...string) error {
    	quiet := false
    	if len(args) > 0 && args[0] == "-q" {
    		quiet = true
    		args = args[1:]
    	}
    	if len(args) != 2 {
    		return ErrUsage
    	}
    
    	name1, name2 := args[0], args[1]
    	var text1, text2 string
    	switch name1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. istioctl/pkg/admin/istiodconfig_test.go

    	validationPattern := `^\w+:(debug|error|warn|info|debug)`
    	type args struct {
    		slp               string
    		validationPattern string
    	}
    	tests := []struct {
    		name    string
    		args    args
    		want    *ScopeLevelPair
    		wantErr bool
    	}{
    		{
    			name:    "Fail when logs scope-level pair don't match pattern",
    			args:    args{validationPattern: validationPattern, slp: "invalid:pattern"},
    			wantErr: true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildActionExecuterTest.groovy

            then:
            1 * asyncConnection.run(!null, !null) >> {args ->
                ConsumerAction<GradleProject> action = args[0]
                action.run(connection)
                adaptedHandler = args[1]
            }
            1 * connection.run(action, _) >> { args ->
                ConsumerOperationParameters params = args[1]
                assert params.tasks == ['a', 'b']
                return result
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultBuildLauncherTest.groovy

            then:
            1 * asyncConnection.run(!null, !null) >> { args ->
                ConsumerAction<GradleProject> action = args[0]
                action.run(connection)
                adaptedHandler = args[1]
                adaptedHandler.onComplete(null)
            }
            1 * connection.run(Void, _) >> {args ->
                ConsumerOperationParameters params = args[1]
                assert params.tasks == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteARM.go

    			}
    			z := v_1.Args[1]
    			y := v_1.Args[0]
    			flags := v_2
    			v.reset(OpARMADCshiftRAreg)
    			v.AddArg4(x, y, z, flags)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueARM_OpARMADCconst(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADCconst [c] (ADDconst [d] x) flags)
    	// result: (ADCconst [c+d] x flags)
    	for {
    		c := auxIntToInt32(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top