Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,181 for Avery (0.08 sec)

  1. src/image/geom_test.go

    		Rect(2, 3, 12, 5),
    		Rect(-1, -2, 0, 0),
    		Rect(-1, -2, 4, 6),
    		Rect(-10, -20, 30, 40),
    		Rect(8, 8, 8, 8),
    		Rect(88, 88, 88, 88),
    		Rect(6, 5, 4, 3),
    	}
    
    	// r.Eq(s) should be equivalent to every point in r being in s, and every
    	// point in s being in r.
    	for _, r := range rects {
    		for _, s := range rects {
    			got := r.Eq(s)
    			want := in(r, s) == nil && in(s, r) == nil
    			if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 05:05:59 UTC 2017
    - 3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	// based on the dynamic cert state.
    	baseTLSConfig *tls.Config
    
    	// clientCA provides the very latest content of the ca bundle
    	clientCA CAContentProvider
    	// servingCert provides the very latest content of the default serving certificate
    	servingCert CertKeyContentProvider
    	// sniCerts are a list of CertKeyContentProvider with associated names used for SNI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/atomic_test.go

    		atomic.Or8(&x, 1<<i)
    		if r := (uint8(1) << (i + 1)) - 1; x != r {
    			t.Fatalf("setting bit %#x: want %#x, got %#x", uint8(1)<<i, r, x)
    		}
    	}
    
    	// Start with every bit in array set to 0.
    	a := make([]uint8, 1<<12)
    
    	// Set every bit in array bit-by-bit in different goroutines.
    	done := make(chan bool)
    	for i := 0; i < 8; i++ {
    		m := uint8(1 << i)
    		go func() {
    			for i := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Striped.java

        return Collections.unmodifiableList(asStripes);
      }
    
      // Static factories
    
      /**
       * Creates a {@code Striped<L>} with eagerly initialized, strongly referenced locks. Every lock is
       * obtained from the passed supplier.
       *
       * @param stripes the minimum number of stripes (locks) required
       * @param supplier a {@code Supplier<L>} object to obtain locks from
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 10 20:55:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. docs/en/docs/async.md

    To see how to achieve this parallelism in production see the section about [Deployment](deployment/index.md){.internal-link target=_blank}.
    
    ## `async` and `await`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningConfigurationsSpec.groovy

            signingTasks.every { it.signatures.every { it in configurations.signatures.artifacts } }
        }
    
        def "sign configuration with inherited artifacts"() {
            when:
            signing {
                sign configurations.produced
            }
    
            then:
            configurations.signatures.artifacts.size() == 3
            signProduced.signatures.every { it in configurations.signatures.artifacts }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/interpodaffinity/scoring.go

    		}
    	}
    
    	// For every soft pod affinity term of <existingPod>, if <pod> matches the term,
    	// increment <p.counts> for every node in the cluster with the same <term.TopologyKey>
    	// value as that of <existingPod>'s node by the term's weight.
    	topoScore.processTerms(existingPod.PreferredAffinityTerms, incomingPod, state.namespaceLabels, existingPodNode, 1)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

     *     ext.prop2 = "bar"
     * }
     * subprojects { ext.${prop3} = false }
     * </code></pre>
     */
    ```
    
    ## 1.4 Where Javadoc is used
    
    At the minimum, Javadoc is present for every public type (including public inner types), and every public or protected member of such a type, with a few exceptions such as overrides and self-explanatory members:
    
    ```java
    public Image getImage(URL url, String name) {}
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    		// of every loop to prevent extra executions of f().
    		select {
    		case <-stopCh:
    			if !t.Stop() {
    				<-t.C()
    			}
    			return
    		case <-t.C():
    		}
    	}
    }
    
    // JitterUntilWithContext loops until context is done, running f every period.
    //
    // If jitterFactor is positive, the period is jittered before every run of f.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/PerformanceReportScenario.groovy

        }
    
        boolean isImproved() {
            return !crossBuild && currentExecutions.every { it.confidentToSayBetter() }
        }
    
        boolean isBuildFailed() {
            return teamCityExecutions.every { it.isBuildFailed() } && currentExecutions.empty
        }
    
        boolean isRegressed() {
            return teamCityExecutions.every { it.isBuildFailed() } && !currentExecutions.empty
        }
    
        boolean isSuccessful() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top