Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,892 for arns (0.06 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppCompilerArgsTransformer.java

        @Override
        public List<String> transform(T spec) {
            List<String> args = new ArrayList<>();
            addToolSpecificArgs(spec, args);
            addMacroArgs(spec, args);
            addUserArgs(spec, args);
            addIncludeArgs(spec, args);
            return args;
        }
    
        private void addUserArgs(T spec, List<String> args) {
            args.addAll(escapeUserArgs(spec.getAllArgs()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. pkg/probe/util_test.go

    	}
    	tests := []struct {
    		name    string
    		args    args
    		want    int
    		wantErr bool
    	}{
    		{
    			name: "get port by int type",
    			args: args{
    				param:     intstr.IntOrString{Type: 0, IntVal: 443},
    				container: &v1.Container{},
    			},
    			want:    443,
    			wantErr: false,
    		},
    		{
    			name: "invalid port",
    			args: args{
    				param:     intstr.IntOrString{Type: 0, IntVal: 66666},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:14:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_cluster_signature_test.cc

      std::vector<XlaCompiler::Argument> args(1);
      args[0].kind = XlaCompiler::Argument::kConstant;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({4, 0});
      args[0].constant_value = Tensor(DT_INT32, {4, 0});
      TF_ASSERT_OK_AND_ASSIGN(DeviceCompilationClusterSignature s1,
                              DeviceCompilationClusterSignature::Build(fn, args));
    
      args[0].type = DT_FLOAT;
      args[0].constant_value = Tensor(DT_FLOAT, {4, 0});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

    from typing import overload
    
    class Attribute:
        def __init__(self, *args, **kwargs) -> None: ...
    
    class Block:
        def __init__(self, *args, **kwargs) -> None: ...
        def addArgument(self, *args, **kwargs) -> Any: ...
        def end(self) -> Block_Iterator: ...
        def new(self) -> Block: ...
    
    class BlockArgument(Value):
        def __init__(self, *args, **kwargs) -> None: ...
    
    class Block_Iterator:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    	case STR_EQ:
    		op = "MOVW" + op[3:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case STRB_EQ:
    		op = "MOVB" + op[4:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case STRH_EQ:
    		op = "MOVH" + op[4:] + suffix
    		args[0], args[1] = args[1], args[0]
    	case VSTR_EQ:
    		args[0], args[1] = args[1], args[0]
    	default:
    		op = op + suffix
    	}
    
    	if args != nil {
    		op += " " + strings.Join(args, ", ")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			savedSharedVHost := proto.Clone(tt.args.sharedRoutesVHost).(*route.VirtualHost)
    			patchHTTPRoute(tt.args.patchContext, tt.args.patches, tt.args.routeConfiguration,
    				tt.args.virtualHost, tt.args.routeIndex, tt.args.routesRemoved, tt.args.portMap, &tt.args.clonedVhostRoutes)
    			if diff := cmp.Diff(tt.want, tt.args.virtualHost, protocmp.Transform()); diff != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. operator/cmd/mesh/profile-diff_test.go

    	l := clog.NewConsoleLogger(os.Stdout, os.Stderr, nil)
    	for i, c := range cases {
    		t.Run(fmt.Sprintf("case %d %q", i, c.args), func(t *testing.T) {
    			args := strings.Split(c.args, " ")
    			setFlag := fmt.Sprintf("installPackagePath=%s", snapshotCharts)
    			by := &bytes.Buffer{}
    			_, err := profileDiffInternal(args[len(args)-2], args[len(args)-1], []string{setFlag}, by, l)
    			verifyProfileDiffCommandCaseOutput(t, c, by.String(), err)
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. pilot/pkg/bootstrap/servicecontroller.go

    func (s *Server) initKubeRegistry(args *PilotArgs) (err error) {
    	args.RegistryOptions.KubeOptions.ClusterID = s.clusterID
    	args.RegistryOptions.KubeOptions.Revision = args.Revision
    	args.RegistryOptions.KubeOptions.Metrics = s.environment
    	args.RegistryOptions.KubeOptions.XDSUpdater = s.XDSServer
    	args.RegistryOptions.KubeOptions.MeshNetworksWatcher = s.environment.NetworksWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/rewritegeneric.go

    				continue
    			}
    			y := left.Args[1]
    			x := left.Args[0]
    			right := v_1
    			if right.Op != OpRsh16Ux64 {
    				continue
    			}
    			_ = right.Args[1]
    			if x != right.Args[0] {
    				continue
    			}
    			right_1 := right.Args[1]
    			if right_1.Op != OpSub64 {
    				continue
    			}
    			_ = right_1.Args[1]
    			right_1_0 := right_1.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  10. src/runtime/cgo/linux_syscall.c

    }
    
    void
    _cgo_libc_setresgid(argset_t* x) {
    	SET_RETVAL(setresgid((gid_t) x->args[0], (gid_t) x->args[1],
    			     (gid_t) x->args[2]));
    }
    
    void
    _cgo_libc_setresuid(argset_t* x) {
    	SET_RETVAL(setresuid((uid_t) x->args[0], (uid_t) x->args[1],
    			     (uid_t) x->args[2]));
    }
    
    void
    _cgo_libc_setreuid(argset_t* x) {
    	SET_RETVAL(setreuid((uid_t) x->args[0], (uid_t) x->args[1]));
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top