Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 37 for bargs (1.9 sec)

  1. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/AgentControl.java

        @Nullable
        private static Method findAgentMethod(String agentClassName, String methodName, Class<?>... args) {
            Class<?> agentClass = tryLoadAgentClass(agentClassName);
            if (agentClass == null) {
                return null;
            }
            try {
                Method method = agentClass.getMethod(methodName, args);
                method.setAccessible(true);
                return method;
            } catch (NoSuchMethodException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/volume/git_repo/git_repo.go

    	}
    	if err := wrapped.SetUpAt(dir, mounterArgs); err != nil {
    		return err
    	}
    
    	args := []string{"clone", "--", b.source}
    
    	if len(b.target) != 0 {
    		args = append(args, b.target)
    	}
    	if output, err := b.execCommand("git", args, dir); err != nil {
    		return fmt.Errorf("failed to exec 'git %s': %s: %v",
    			strings.Join(args, " "), output, err)
    	}
    
    	files, err := ioutil.ReadDir(dir)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/daemon-services/src/main/java/org/gradle/configuration/DefaultBuildClientMetaData.java

        public DefaultBuildClientMetaData(GradleLauncherMetaData delegate) {
            this.delegate = delegate;
        }
    
        @Override
        public void describeCommand(Appendable output, String... args) {
            delegate.describeCommand(output, args);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:55:06 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/server.go

    }
    
    func NewServer(ctx context.Context, ready *atomic.Value, pluginSocket string, args AmbientArgs) (*Server, error) {
    	client, err := buildKubeClient(args.KubeConfig)
    	if err != nil {
    		return nil, fmt.Errorf("error initializing kube client: %w", err)
    	}
    
    	cfg := &iptables.Config{
    		RestoreFormat: true,
    		RedirectDNS:   args.DNSCapture,
    		EnableIPv6:    args.EnableIPv6,
    	}
    
    	log.Debug("creating ipsets in the node netns")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/bug/bug.go

    // It ignores failures; 'go bug' is best effort.
    func printCmdOut(w io.Writer, prefix, path string, args ...string) {
    	cmd := exec.Command(path, args...)
    	out, err := cmd.Output()
    	if err != nil {
    		if cfg.BuildV {
    			fmt.Printf("%s %s: %v\n", path, strings.Join(args, " "), err)
    		}
    		return
    	}
    	fmt.Fprintf(w, "%s%s\n", prefix, bytes.TrimSpace(out))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/rule/describe/AbstractModelRuleDescriptor.java

            return append(new SimpleModelRuleDescriptor(child));
        }
    
        @Override
        @FormatMethod
        public ModelRuleDescriptor append(@FormatString String child, Object... args) {
            return append(String.format(child, args));
        }
    
        @Override
        public String toString() {
            StringBuilder sb = new StringBuilder();
            describeTo(sb);
            return sb.toString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:38:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. tests/binary/binaries_test.go

    			return
    		}
    		if nonVersionBinaries.Contains(name) {
    			return
    		}
    		cmd := path.Join(*releasedir, name)
    		args := []string{"version", "-ojson"}
    		if name == "istioctl" {
    			args = append(args, "--remote=false")
    		}
    
    		out, err := exec.Command(cmd, args...).Output()
    		if err != nil {
    			t.Fatalf("--version failed with error: %v. Output: %v", err, string(out))
    		}
    
    		var resp version.Version
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt

        @Suppress("UnstableApiUsage")
        private
        fun git(vararg args: String): Provider<String> {
            val projectDir = parameters.rootProjectDir.asFile.get()
            val execOutput = providers.exec {
                workingDir = projectDir
                isIgnoreExitValue = true
                commandLine = listOf("git", *args)
                if (OperatingSystem.current().isWindows) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. tests/integration/ambient/registry_setup_test.go

    		Cluster: ctx.AllClusters().Default(),
    	})
    	if err != nil {
    		return
    	}
    
    	args := map[string]any{
    		"DockerConfigJson": base64.StdEncoding.EncodeToString(
    			[]byte(createDockerCredential(registryUser, registryPasswd, registry.Address()))),
    	}
    	if err := ctx.ConfigIstio().EvalFile(apps.Namespace.Name(), args, "testdata/registry-secret.yaml").
    		Apply(apply.CleanupConditionally); err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/dump.go

    			dumpInlines(in.Inner, depth+1)
    		default:
    			fmt.Printf("%*s%#v\n", depth*4, "", in)
    		}
    	}
    }
    
    func dprintf(depth int, format string, args ...any) {
    	fmt.Printf("%*s%s", depth*4, "", fmt.Sprintf(format, args...))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top