Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,976 for argps (0.07 sec)

  1. src/log/slog/logger.go

    	l.log(ctx, LevelInfo, msg, args...)
    }
    
    // Warn logs at [LevelWarn].
    func (l *Logger) Warn(msg string, args ...any) {
    	l.log(context.Background(), LevelWarn, msg, args...)
    }
    
    // WarnContext logs at [LevelWarn] with the given context.
    func (l *Logger) WarnContext(ctx context.Context, msg string, args ...any) {
    	l.log(ctx, LevelWarn, msg, args...)
    }
    
    // Error logs at [LevelError].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. cni/pkg/util/podutil_test.go

    			args: args{
    				namespace: unlabelledNamespace,
    				pod:       unlabelledPod,
    			},
    			want: false,
    		},
    		{
    			name: "pod has sidecar and namespace has ambient enabled",
    			args: args{
    				namespace: namespaceWithAmbientEnabledLabel,
    				pod:       podWithSidecar,
    			},
    			want: false,
    		},
    		{
    			name: "pod has label to disable ambient redirection",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/go/types/typeterm_test.go

    		"string int string int",
    		"~string int ~string int",
    		"myInt int myInt int",
    		"~string ~int ~string ~int",
    		"myInt ~int ~int ∅",
    	} {
    		args := split(test, 4)
    		x := testTerm(args[0])
    		y := testTerm(args[1])
    		want1 := testTerm(args[2])
    		want2 := testTerm(args[3])
    		if got1, got2 := x.union(y); !got1.equal(want1) || !got2.equal(want2) {
    			t.Errorf("%v.union(%v) = %v, %v; want %v, %v", x, y, got1, got2, want1, want2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            given:
            def called = []
            Action<?> a = Mock() {
                execute(_) >> { args -> args[0] << 'a' }
            }
            Action<?> b = Mock() {
                execute(_) >> { args -> args[0] << 'b' }
            }
            Action<?> c = Mock() {
                execute(_) >> { args -> args[0] << 'c' }
            }
    
            when:
            def set = Actions.set(b, a)
            set = Actions.set(set, c)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. maven-embedder/src/test/java/org/apache/maven/cli/CleanArgumentTest.java

    /**
     */
    class CleanArgumentTest {
        @Test
        void cleanArgsShouldRemoveWrongSurroundingQuotes() {
            String[] args = {"\"-Dfoo=bar", "\"-Dfoo2=bar two\""};
            String[] cleanArgs = CleanArgument.cleanArgs(args);
            assertEquals(args.length, cleanArgs.length);
            assertEquals("-Dfoo=bar", cleanArgs[0]);
            assertEquals("-Dfoo2=bar two", cleanArgs[1]);
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/memcombine.go

    			off += ptr.AuxInt
    			ptr = ptr.Args[0]
    		} else if ptr.Op == OpAddPtr {
    			if idx != nil {
    				// We have two or more indexing values.
    				// Pick the first one we found.
    				return BaseAddress{ptr: ptr, idx: idx}, off
    			}
    			idx = ptr.Args[1]
    			if idx.Op == OpAdd32 || idx.Op == OpAdd64 {
    				if idx.Args[0].Op == OpConst32 || idx.Args[0].Op == OpConst64 {
    					off += idx.Args[0].AuxInt
    					idx = idx.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. internal/event/target/mqtt.go

    // NewMQTTTarget - creates new MQTT target.
    func NewMQTTTarget(id string, args MQTTArgs, loggerOnce logger.LogOnce) (*MQTTTarget, error) {
    	if args.MaxReconnectInterval == 0 {
    		// Default interval
    		// https://github.com/eclipse/paho.mqtt.golang/blob/master/options.go#L115
    		args.MaxReconnectInterval = 10 * time.Minute
    	}
    
    	if args.KeepAlive == 0 {
    		args.KeepAlive = 10 * time.Second
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_launch_util_test.cc

      CreateContext();
    
      std::vector<XlaCompiler::Argument> args(2);
      args[0].kind = XlaCompiler::Argument::kParameter;
      args[0].initialized = true;
      args[0].type = DT_INT32;
      args[0].shape = TensorShape({1, 2});
      args[1].kind = XlaCompiler::Argument::kParameter;
      args[1].initialized = true;
      args[1].type = DT_INT32;
      args[1].shape = TensorShape({1, 2});
    
      const XlaCompiler::CompilationResult* result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactoryTest.java

            ParameterizedClassDesc[] args = desc.getArguments();
            assertThat(args.length, is(1));
            assertThat(args[0].getRawClass(), is(sameClass(Integer.class)));
    
            desc = ParameterizedClassDescFactory.createParameterizedClassDesc(method, 1, map);
            assertThat(desc.getRawClass(), is(sameClass(Map.class)));
            args = desc.getArguments();
            assertThat(args.length, is(2));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppCompilerArgsTransformerTest.groovy

            spec.systemIncludeRoots >> systemIncludes
    
            when:
            def args = transformer.transform(spec)
    
            then:
            assertHasArguments(args, "/I", includes)
            assertHasArguments(args, "/I", systemIncludes)
    
            and:
            args.indexOf("/I" + includes.last().absoluteFile.toString()) < args.indexOf("/I" + systemIncludes.first().absoluteFile.toString())
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top