Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 37 for shortly (0.23 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    			}
    			markMountUncertainErr := actualStateOfWorld.MarkVolumeMountAsUncertain(opts)
    			if markMountUncertainErr != nil {
    				// There is nothing else we can do. Hope that UnmountVolume will be re-tried shortly.
    				klog.Errorf(volumeToUnmount.GenerateErrorDetailed("UnmountVolume.MarkVolumeMountAsUncertain failed", markMountUncertainErr).Error())
    			}
    
    			// On failure, return error. Caller will log and retry.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    func TestStressSurpriseServerCloses(t *testing.T) {
    	run(t, testStressSurpriseServerCloses, []testMode{http1Mode})
    }
    func testStressSurpriseServerCloses(t *testing.T, mode testMode) {
    	if testing.Short() {
    		t.Skip("skipping test in short mode")
    	}
    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		w.Header().Set("Content-Length", "5")
    		w.Header().Set("Content-Type", "text/plain")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// can resume performing those duties. If it wakes from a syscall it
    		// resets idle and delay as a bet that since it had retaken a P from a
    		// syscall before, it may need to do it again shortly after the
    		// application starts work again. It does not reset idle when waking
    		// from a timer to avoid adding system load to applications that spend
    		// most of their time sleeping.
    		now := nanotime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    func TestWriteDeadlineExtendedOnNewRequest(t *testing.T) {
    	run(t, testWriteDeadlineExtendedOnNewRequest)
    }
    func testWriteDeadlineExtendedOnNewRequest(t *testing.T, mode testMode) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	ts := newClientServerTest(t, mode, HandlerFunc(func(res ResponseWriter, req *Request) {}),
    		func(ts *httptest.Server) {
    			ts.Config.WriteTimeout = 250 * time.Millisecond
    		},
    	).ts
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            outputContains("artifacts: [producer2.jar (producer2.jar)]")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22735")
        def "transform selection prioritizes shorter transforms over attribute schema matching"() {
    
            // The lib project defines two variants:
            // primary:
            // - artifactType=jar
            // - extraAttribute=preferred
            // secondary:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80 fib saddr type local jump mark-for-masquerade comment "masquerade local traffic"
    		add rule ip kube-proxy external-42NFTM6N-ns2/svc2/tcp/p80 fib saddr type local goto service-42NFTM6N-ns2/svc2/tcp/p80 comment "short-circuit local traffic"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.0.4/plexus-utils-1.0.4.jar

    static String[] LEADING_ZEROS; private static final double[] DOUBLE_POW_10; private void TypeFormat(); public static int indexOf(CharSequence, CharSequence, int); public static boolean parseBoolean(CharSequence); public static short parseShort(CharSequence); public static short parseShort(CharSequence, int); public static int parseInt(CharSequence); public static int parseInt(CharSequence, int); public static long parseLong(CharSequence); public static long parseLong(CharSequence, int); public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160K bytes
    - Viewed (0)
  8. src/database/sql/sql_test.go

    		t.Fatal(err)
    	}
    	tx.Commit()
    	if got := len(db.freeConn); got != 0 {
    		t.Errorf("freeConns = %d; want 0", got)
    	}
    }
    
    func TestMaxOpenConns(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    	defer setHookpostCloseConn(nil)
    	setHookpostCloseConn(func(_ *fakeConn, err error) {
    		if err != nil {
    			t.Errorf("Error closing fakeConn: %v", err)
    		}
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    inside a <a href="#Function_declarations">function body</a> if the variable is
    never used.
    </p>
    
    <h3 id="Short_variable_declarations">Short variable declarations</h3>
    
    <p>
    A <i>short variable declaration</i> uses the syntax:
    </p>
    
    <pre class="ebnf">
    ShortVarDecl = IdentifierList ":=" ExpressionList .
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    func TestAllocsInterfaceBig(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(S{})
    	if allocs := testing.AllocsPerRun(100, func() { v.Interface() }); allocs > 0 {
    		t.Error("allocs:", allocs)
    	}
    }
    
    func TestAllocsInterfaceSmall(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping malloc count in short mode")
    	}
    	v := ValueOf(int64(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top