Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 761 for Avery (0.05 sec)

  1. src/internal/goos/goos.go

    // package goos contains GOOS-specific constants.
    package goos
    
    // The next line makes 'go generate' write the zgoos*.go files with
    // per-OS information, including constants named Is$GOOS for every
    // known GOOS. The constant is 1 on the current system, 0 otherwise;
    // multiplying by them is useful for defining GOOS-specific constants.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 534 bytes
    - Viewed (0)
  2. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            jar in signJar.dependsOn
            sourcesJar in signSourcesJar.dependsOn
            javadocJar in signJavadocJar.dependsOn
    
            and:
            signingTasks.every { it.singleSignature in configurations.signatures.artifacts }
    
            and:
            signingTasks.every { it.signatory == signing.signatory }
        }
    
        def "sign method return values"() {
            given:
            useJavadocAndSourceJars()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. 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)
  4. .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)
  5. 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)
  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/cmd/cgo/internal/test/setgid2_linux.go

    	"runtime"
    	"testing"
    )
    
    func testSetgidStress(t *testing.T) {
    	const N = 50
    	ch := make(chan int, N)
    	for i := 0; i < N; i++ {
    		go func() {
    			C.setgid(0)
    			ch <- 1
    			runtime.LockOSThread() // so every goroutine uses a new thread
    		}()
    	}
    	for i := 0; i < N; i++ {
    		<-ch
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 681 bytes
    - Viewed (0)
Back to top