Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for _run (0.17 sec)

  1. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                }
                configurations {
                    conf
                }
                dependencies {
                    conf 'org:top:1.0'
                }
            """
    
            when:
            run "dependencyInsight", "--dependency", "unknown"
    
            then:
            outputContains """
    No dependencies matching given input were found in configuration ':compileClasspath'
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    // variable and the presence of a go.mod file. See 'go help modules' for details.
    // If module-aware mode is enabled, "go run" runs in the context of the main
    // module.
    //
    // By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    // If the -exec flag is given, 'go run' invokes the binary using xprog:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    func runCancelTest(t *testing.T, f func(t *testing.T, test cancelTest), opts ...any) {
    	run(t, func(t *testing.T, mode testMode) {
    		if mode == http1Mode {
    			t.Run("TransportCancel", func(t *testing.T) {
    				runCancelTestTransport(t, mode, f)
    			})
    		}
    		t.Run("RequestCancel", func(t *testing.T) {
    			runCancelTestChannel(t, mode, f)
    		})
    		t.Run("ContextCancel", func(t *testing.T) {
    			runCancelTestContext(t, mode, f)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    	const chunkedMode = true
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("identity", func(t *testing.T) { testHeadBody(t, mode, identityMode, "HEAD") })
    		t.Run("chunked", func(t *testing.T) { testHeadBody(t, mode, chunkedMode, "HEAD") })
    	})
    }
    
    func TestGetBody(t *testing.T) {
    	const identityMode = false
    	const chunkedMode = true
    	run(t, func(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    // injectglist adds each runnable G on the list to some run queue,
    // and clears glist. If there is no current P, they are added to the
    // global queue, and up to npidle M's are started to run them.
    // Otherwise, for each idle P, this adds a G to the global queue
    // and starts an M. Any remaining G's are added to the current P's
    // local run queue.
    // This may temporarily acquire sched.lock.
    // Can run concurrently with GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  6. pkg/config/validation/validation_test.go

    			valid: true,
    		},
    		{
    			name:        "dry-run-valid-allow",
    			annotations: map[string]string{"istio.io/dry-run": "true"},
    			in: &security_beta.AuthorizationPolicy{
    				Action: security_beta.AuthorizationPolicy_ALLOW,
    			},
    			valid: true,
    		},
    		{
    			name:        "dry-run-valid-deny",
    			annotations: map[string]string{"istio.io/dry-run": "false"},
    			in: &security_beta.AuthorizationPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              @Override
              public void run() {}
            };
        final Runnable finishSuccess =
            new Runnable() {
              @Override
              public void run() {
                delayedSuccess.set("b");
              }
            };
        final Runnable finishFailure =
            new Runnable() {
              @Override
              public void run() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

              @Override
              public void run() {}
            };
        final Runnable finishSuccess =
            new Runnable() {
              @Override
              public void run() {
                delayedSuccess.set("b");
              }
            };
        final Runnable finishFailure =
            new Runnable() {
              @Override
              public void run() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    		},
    		{
    			name:    "enabled plugin implements ScoreWithNormalizePlugin interface",
    			plugins: buildScoreConfigDefaultWeights(scoreWithNormalizePlugin1),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			profile := config.KubeSchedulerProfile{Plugins: tt.plugins}
    			_, ctx := ktesting.NewTestContext(t)
    			ctx, cancel := context.WithCancel(ctx)
    			defer cancel()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. pkg/api/pod/util_test.go

    				},
    			},
    			wantContainers: []string{"i1", "i2", "c1", "c2", "e1", "e2"},
    			mask:           AllContainers,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.desc, func(t *testing.T) {
    			if tc.mask == setAllFeatureEnabledContainersDuringTest {
    				tc.mask = AllFeatureEnabledContainers()
    			}
    
    			gotContainers := []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top