Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 880 for bargs (2.85 sec)

  1. cmd/kubeadm/test/cmd/version_test.go

    				args = append(args, rt.args)
    			}
    			stdout, _, _, actual := RunCmd(kubeadmPath, args...)
    			if (actual == nil) != rt.expected {
    				t.Errorf(
    					"failed CmdVersion running 'kubeadm version %s' with an error: %v\n\texpected: %t\n\t  actual: %t",
    					rt.args,
    					actual,
    					rt.expected,
    					(actual == nil),
    				)
    			}
    
    			if rt.expected {
    				matched, err := regexp.MatchString(rt.regex, stdout)
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 19:06:01 UTC 2020
    - 3.7K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

            }
    
            InvocationBuilder args(String... args) {
                this.args.addAll(Arrays.asList(args))
                this
            }
    
            InvocationBuilder jvmArgs(String... args) {
                this.jvmArguments.addAll(Arrays.asList(args))
                this
            }
    
            InvocationBuilder jvmArgs(Iterable<String> args) {
                this.jvmArguments.addAll(args)
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. cmd/config-migrate.go

    	}
    	for k, args := range cfg.Notify.NATS {
    		notify.SetNotifyNATS(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.NSQ {
    		notify.SetNotifyNSQ(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.PostgreSQL {
    		notify.SetNotifyPostgres(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Redis {
    		notify.SetNotifyRedis(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Webhook {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure.sh

      if [[ "${kube_addon_registry}" != "registry.k8s.io" ]]; then
        find "${dst_dir}" \( -name '*.yaml' -or -name '*.yaml.in' \) -print0 | \
          xargs -0 sed -ri "s@(image:\s.*)registry.k8s.io@\1${kube_addon_registry}@"
        find "${dst_dir}" \( -name '*.manifest' -or -name '*.json' \) -print0 | \
          xargs -0 sed -ri "s@(image\":\s+\")registry.k8s.io@\1${kube_addon_registry}@"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

        List<String> getArgs();
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
        JavaExecSpec args(Object... args);
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $_32bit ne "") {
    			if(@args % 2 && $arm) {
    				# arm abi specifies 64-bit argument uses
    				# (even, odd) pair
    				push @args, "0"
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} else {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			}
    		} else {
    			push @args, "uintptr($name)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/mesh.go

    func (s *Server) initMeshConfiguration(args *PilotArgs, fileWatcher filewatcher.FileWatcher) {
    	log.Infof("initializing mesh configuration %v", args.MeshConfigFile)
    	defer func() {
    		if s.environment.Watcher != nil {
    			log.Infof("mesh configuration: %s", mesh.PrettyFormatOfMeshConfig(s.environment.Mesh()))
    			log.Infof("version: %s", version.Info.String())
    			argsdump, _ := json.MarshalIndent(args, "", "   ")
    			log.Infof("flags: %s", argsdump)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/signatory/internal/pgp/InMemoryPgpSignatoryProvider.java

            String keyId = null;
            String secretKey = null;
            String password = null;
    
            switch (args.length) {
                case 2:
                    secretKey = args[0].toString();
                    password = args[1].toString();
                    break;
                case 3:
                    keyId = args[0].toString();
                    secretKey = args[1].toString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/pod_container_manager_linux_test.go

    			require.Equalf(t, tt.wantCgroupName, actualCgroupName, "Unexpected cgroup name for pod with UID %s, container resources: %v", tt.args.pod.UID, tt.args.pod.Spec.Containers[0].Resources)
    			require.Equalf(t, tt.wantLiteralCgroupfs, actualLiteralCgroupfs, "Unexpected literal cgroupfs for pod with UID %s, container resources: %v", tt.args.pod.UID, tt.args.pod.Spec.Containers[0].Resources)
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 08 13:06:38 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  10. 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)
Back to top