Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,892 for arns (0.06 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/sources/process/DelegatingExecSpec.java

            return this;
        }
    
        @Override
        default ExecSpec commandLine(Iterable<?> args) {
            getDelegate().commandLine(args);
            return this;
        }
    
        @Override
        default ExecSpec args(Object... args) {
            getDelegate().args(args);
            return this;
        }
    
        @Override
        default ExecSpec args(Iterable<?> args) {
            getDelegate().args(args);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. internal/logger/target/console/console.go

    		if entry.API.Args != nil {
    			args := ""
    			if entry.API.Args.Bucket != "" {
    				args = args + "bucket=" + entry.API.Args.Bucket
    			}
    			if entry.API.Args.Object != "" {
    				args = args + ", object=" + entry.API.Args.Object
    			}
    			if entry.API.Args.VersionID != "" {
    				args = args + ", versionId=" + entry.API.Args.VersionID
    			}
    			if len(entry.API.Args.Objects) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/warning_test.go

    	"reflect"
    	"testing"
    )
    
    func Test_recorder_AddWarning(t *testing.T) {
    	type args struct {
    		agent string
    		text  string
    	}
    	tests := []struct {
    		name   string
    		args   []args
    		expect []string
    	}{
    		{
    			name:   "empty",
    			args:   []args{},
    			expect: nil,
    		},
    		{
    			name:   "empty values",
    			args:   []args{{agent: "", text: ""}},
    			expect: nil,
    		},
    		{
    			name:   "empty agent",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 01 16:14:06 UTC 2020
    - 4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/registry/rest/delete_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			if tt.args.strategy == nil {
    				tt.args.strategy = mockStrategy{}
    			}
    			if tt.args.ctx == nil {
    				tt.args.ctx = context.Background()
    			}
    
    			gotGraceful, gotGracefulPending, err := BeforeDelete(tt.args.strategy, tt.args.ctx, tt.args.pod, tt.args.options)
    			if (err != nil) != tt.wantErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 11:44:07 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/initsystem/initsystem_unix.go

    func (openrc OpenRCInitSystem) ServiceStart(service string) error {
    	args := []string{service, "start"}
    	return exec.Command("rc-service", args...).Run()
    }
    
    // ServiceStop tries to stop a specific service
    func (openrc OpenRCInitSystem) ServiceStop(service string) error {
    	args := []string{service, "stop"}
    	return exec.Command("rc-service", args...).Run()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 03:15:07 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. pkg/scheduler/apis/config/scheme/scheme_test.go

    kind: KubeSchedulerConfiguration
    profiles:
    - pluginConfig:
      - name: DefaultPreemption
        args:
          minCandidateNodesPercentage: 50
          minCandidateNodesAbsolute: 500
      - name: InterPodAffinity
        args:
          hardPodAffinityWeight: 5
      - name: NodeResourcesFit
        args:
          ignoredResources: ["foo"]
      - name: PodTopologySpread
        args:
          defaultConstraints:
          - maxSkew: 1
            topologyKey: zone
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  7. internal/arn/arn_test.go

    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN partition must fail",
    			args: args{
    				arnStr: "arn:invalid:iam:us-east-1::role/my-role",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    			name: "invalid ARN service must fail",
    			args: args{
    				arnStr: "arn:minio:invalid:us-east-1::role/my-role",
    			},
    			wantArn: ARN{},
    			wantErr: true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 08:31:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccCompilerArgsTransformer.java

            List<String> args = new ArrayList<>();
            addToolSpecificArgs(spec, args);
            addMacroArgs(spec, args);
            addUserArgs(spec, args);
            addIncludeArgs(spec, args);
            return args;
        }
    
        protected void addToolSpecificArgs(T spec, List<String> args) {
            Collections.addAll(args, "-x", getLanguage());
            args.add("-c");
            if (spec.isPositionIndependentCode()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

                args.add("-bootclasspath");
                args.add(bootClasspath);
            }
            if (compileOptions.getExtensionDirs() != null) {
                args.add("-extdirs");
                args.add(compileOptions.getExtensionDirs());
            }
            if (compileOptions.getHeaderOutputDirectory() != null) {
                args.add("-h");
                args.add(compileOptions.getHeaderOutputDirectory().getPath());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer.h

      template <typename... Args>
      Renderer CommentLine(absl::string_view text, const Args &...args) {
        return CommentLine(absl::Substitute(text, args...));
      }
    
      // Append a line of code which starts a new block: trailing with '{') and
      // indenting.
      Renderer &BlockOpen(const string &text);
      template <typename... Args>
      Renderer BlockOpen(absl::string_view text, const Args &...args) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top