Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,039 for Avery (0.04 sec)

  1. src/go/doc/testdata/examples/import_groups.go

    	"time"
    
    	"golang.org/x/time/rate"
    )
    
    func Example() {
    	fmt.Println("Hello, world!")
    	// Output: Hello, world!
    }
    
    func ExampleLimiter() {
    	// Uses fmt, time and rate.
    	l := rate.NewLimiter(rate.Every(time.Second), 1)
    	fmt.Println(l)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 429 bytes
    - Viewed (0)
  2. .github/workflows/team-triage-stale.yml

    name: 'Requeue stale team-triage items'
    on:
      schedule:
        # Execute every day at 00:05 to avoid conflicts with other workflows
        - cron: '5 0 * * *'
    
    permissions: {}
    
    jobs:
      requeue:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              remove-stale-when-updated: false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 835 bytes
    - Viewed (0)
  3. src/os/timeout_test.go

    				d = next
    			}
    			continue
    		}
    
    		break
    	}
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

             *
             * Only called for the node which is removed, and not every node in the hierarchy which is removed.
             */
            void nodeRemoved(FileSystemNode node);
    
            /**
             * Called when a node is added during the update.
             *
             * Only called for the node which is added, and not every node in the hierarchy which is added.
             */
            void nodeAdded(FileSystemNode node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		close(c.done)
    	}
    }
    
    func (c *cacheWatcher) nonblockingAdd(event *watchCacheEvent) bool {
    	// if the bookmarkAfterResourceVersion hasn't been seen
    	// we will try to deliver a bookmark event every second.
    	// the following check will discard a bookmark event
    	// if it is < than the bookmarkAfterResourceVersion
    	// so that we don't pollute the input channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. tests/test_tutorial/test_schema_extra_example/test_tutorial005_an_py39.py

        return client
    
    
    @needs_py39
    def test_post_body_example(client: TestClient):
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    @needs_py39
    def test_openapi_schema(client: TestClient) -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    		f(ctx)
    	})
    }
    
    // Start starts f in a new goroutine in the group.
    func (g *Group) Start(f func()) {
    	g.wg.Add(1)
    	go func() {
    		defer g.wg.Done()
    		f()
    	}()
    }
    
    // Forever calls f every period for ever.
    //
    // Forever is syntactic sugar on top of Until.
    func Forever(f func(), period time.Duration) {
    	Until(f, period, NeverStop)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	cmd.Env = append(os.Environ(), "GOOS=linux")
    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		t.Errorf("Build failed: %v, output: %s", err, out)
    	}
    }
    
    // gen generates a very large program, with a very far conditional branch.
    func gen(buf *bytes.Buffer) {
    	fmt.Fprintln(buf, "TEXT f(SB),0,$0-0")
    	fmt.Fprintln(buf, "TBZ $5, R0, label")
    	fmt.Fprintln(buf, "CBZ R0, label")
    	fmt.Fprintln(buf, "BEQ label")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/empty_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // All of the actual test files have limited build constraints. This file
    // ensures there's at least one test file on every platform.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 19:43:56 UTC 2023
    - 320 bytes
    - Viewed (0)
  10. src/net/http/client.go

    	CheckRedirect func(req *Request, via []*Request) error
    
    	// Jar specifies the cookie jar.
    	//
    	// The Jar is used to insert relevant cookies into every
    	// outbound Request and is updated with the cookie values
    	// of every inbound Response. The Jar is consulted for every
    	// redirect that the Client follows.
    	//
    	// If Jar is nil, cookies are only sent if they are explicitly
    	// set on the Request.
    	Jar CookieJar
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top