Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 401 for droplet (0.12 sec)

  1. pkg/util/iptables/testing/fake_test.go

    	if err == nil {
    		t.Errorf("did not get expected error deleting rule in non-existent chain")
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROPLET")
    	if err != nil {
    		t.Errorf("unexpected error deleting non-existent rule: %v", err)
    	}
    	err = fake.DeleteRule(iptables.TableNAT, iptables.Chain("KUBE-TEST"), "-j", "DROP")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"dress":                                "\U0001f457",
    	"dromedary_camel":                      "\U0001f42a",
    	"drooling_face":                        "\U0001f924",
    	"drop_of_blood":                        "\U0001fa78",
    	"droplet":                              "\U0001f4a7",
    	"drum":                                 "\U0001f941",
    	"duck":                                 "\U0001f986",
    	"dumpling":                             "\U0001f95f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker_test.go

    	// - seconds elapsed (as computed since the initial time)
    	// - requests that will be recorded as dropped in a current second
    	steps := []struct {
    		secondsElapsed int
    		// droppedRequests is the number of requests to drop, after
    		// secondsElapsed.
    		droppedRequests int
    		// retryAfter is the expected retryAfter after all dropped
    		// requests are recorded via RecordDroppedRequest.
    		retryAfter int64
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/svn/test1-svn-git.txt

    svn commit -m 'add modified git-README-only'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-22T15:41:54.145716Z --revprop -r1
    
    svn add pkg.go
    svn commit -m 'use git-README-only/pkg'
    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-22T15:49:11.130406Z --revprop -r2
    
    svn add other
    svn commit -m 'add other'
    svn propset svn:author rsc --revprop -r3
    svn propset svn:date 2017-09-22T16:56:16.665173Z --revprop -r3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	}
    }
    
    // updateRetryAfterIfNeededLocked updates the retryAfter based on the number of
    // dropped requests in the last `retryAfter` seconds:
    //   - if there were less than `retryAfter` dropped requests, it decreases
    //     retryAfter
    //   - if there were at least 3*`retryAfter` dropped requests, it increases
    //     retryAfter
    //
    // The rationale behind these numbers being fairly low is that APF is queuing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/vcstest/svn/test2-svn-git.txt

    git log --oneline --decorate=short
    cmp stdout .git-log
    
    rm README
    
    svn add .git pkg
    svn commit -m 'git'
    svn propset svn:author rsc --revprop -r1
    svn propset svn:date 2017-09-27T18:00:52.201719Z --revprop -r1
    
    svn add p1
    svn commit -m 'add p1'
    svn propset svn:author rsc --revprop -r2
    svn propset svn:date 2017-09-27T18:16:14.650893Z --revprop -r2
    
    git remote set-url origin https://vcs-test.golang.org/git/README-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64.s

    	JCS	2(PC)
    	JMP	*(R12) // JMP (R12)
    	JCS	2(PC)
    //	JMP	*(R12*4) // TODO: This line is silently dropped on the floor!
    	JCS	2(PC)
    	JMP	*(R12)(R13*4) // JMP (R12)(R13*4)
    	JCS	2(PC)
    	JMP	*(AX) // JMP (AX)
    	JCS	2(PC)
    	JMP	*(SP) // JMP (SP)
    	JCS	2(PC)
    //	JMP	*(AX*4) // TODO: This line is silently dropped on the floor!
    	JCS	2(PC)
    	JMP	*(AX)(AX*4) // JMP (AX)(AX*4)
    	JCS	2(PC)
    	JMP	4(SP)
    	JCS	2(PC)
    	JMP	(R12)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 18:57:21 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         * For example, to call the MIF doclet, use:
         * <p>
         *     -doclet com.sun.tools.doclets.mif.MIFDoclet
         * <p>
         * For full, working examples of running a particular doclet, see Running the MIF Doclet.
         */
        @Override
        public String getDoclet() {
            return doclet.getValue();
        }
    
        @Override
        public void setDoclet(String doclet) {
            this.doclet.setValue(doclet);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/svn/hello.txt

    chmod 0755 hooks/pre-revprop-change
    
    env ROOT=$PWD
    cd .checkout
    [GOOS:windows] svn checkout file:///$ROOT .
    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    cmp stdout .svn-log
    
    -- .checkout/MSG --
    hello world
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/basic/groovy/build.gradle

    }
    // end::practical-integ-test-source-set[]
    
    // tag::using-custom-doclet[]
    configurations {
        asciidoclet
    }
    
    dependencies {
        asciidoclet 'org.asciidoctor:asciidoclet:1.+'
    }
    
    tasks.register('configureJavadoc') {
        doLast {
            javadoc {
                options.doclet = 'org.asciidoctor.Asciidoclet'
                options.docletpath = configurations.asciidoclet.files.toList()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.7K bytes
    - Viewed (0)
Back to top