Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 442 for relaxed (0.14 sec)

  1. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @ExtendWith(MockKExtension::class)
    class ApplyDefaultConfigurationTest {
        @MockK(relaxed = true)
        lateinit var buildType: BaseGradleBuildType
    
        private
        val steps = BuildSteps()
    
        private
        val buildModel = CIBuildModel(
            projectId = "Gradle_Check",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. pkg/api/pod/util.go

    	// or the old pod does not exist in the env.
    	// We will let the feature gate decide whether to use relaxed rules.
    	if oldPodEnvVarNames.Len() == 0 {
    		return false
    	}
    
    	if len(validation.IsEnvVarName(name)) == 0 || len(validation.IsRelaxedEnvVarName(name)) != 0 {
    		// It's either a valid name by strict rules or an invalid name under relaxed rules.
    		// Either way, we'll use strict rules to validate.
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. src/runtime/chan.go

    	// so it is safe to read at any time during channel operation.
    	if c.dataqsiz == 0 {
    		// Assumes that a pointer read is relaxed-atomic.
    		return c.recvq.first == nil
    	}
    	// Assumes that a uint read is relaxed-atomic.
    	return c.qcount == c.dataqsiz
    }
    
    // entry point for c <- x from compiled code.
    //
    //go:nosplit
    func chansend1(c *hchan, elem unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  4. src/runtime/mbarrier.go

    // the ptr object regardless of the slot's color.
    //
    // Another place where we intentionally omit memory barriers is when
    // accessing mheap_.arena_used to check if a pointer points into the
    // heap. On relaxed memory machines, it's possible for a mutator to
    // extend the size of the heap by updating arena_used, allocate an
    // object from this new region, and publish a pointer to that object,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    )
    
    // depsRules defines the expected dependencies between packages in
    // the Go source tree. It is a statement of policy.
    //
    // DO NOT CHANGE THIS DATA TO FIX BUILDS.
    // Existing packages should not have their constraints relaxed
    // without prior discussion.
    // Negative assertions should almost never be removed.
    //
    // "a < b" means package b can import package a.
    //
    // See `go doc internal/dag' for the full syntax.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. tests/integration/README.md

    When executing in the CI systems, the makefiles use the ```--istio.test.ci``` flag. This flag causes a few changes in
    behavior. Specifically, more verbose logging output will be displayed, some of the timeout values will be more relaxed, and
    additional diagnostic data will be dumped into the working directory at the end of the test execution.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            final CookieSpecProvider laxStandardProvider =
                    new RFC6265CookieSpecProvider(RFC6265CookieSpecProvider.CompatibilityLevel.RELAXED, publicSuffixMatcher);
            final CookieSpecProvider strictStandardProvider =
                    new RFC6265CookieSpecProvider(RFC6265CookieSpecProvider.CompatibilityLevel.STRICT, publicSuffixMatcher);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	wantObjects := update(t, initialObjects, expected.changes)
    	wantObjects = append(wantObjects, expected.added...)
    	for _, remove := range expected.removed {
    		for i, obj := range wantObjects {
    			// This is a bit relaxed (no GVR comparison, no UID
    			// comparison) to simplify writing the test cases.
    			if obj.GetName() == remove.GetName() && obj.GetNamespace() == remove.GetNamespace() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. src/net/http/clientserver_test.go

    		go func() {
    			defer wg.Done()
    			if mode != http2Mode {
    				// our HTTP/1 implementation intentionally
    				// doesn't permit writes during read (mostly
    				// due to it being undefined); if that is ever
    				// relaxed, change this.
    				<-didRead
    			}
    			io.WriteString(w, resBody)
    		}()
    		wg.Wait()
    	}))
    	req, _ := NewRequest("POST", cst.ts.URL, strings.NewReader(reqBody))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    		track := pp.limiterEvent.start(limiterEventScavengeAssist, start)
    
    		// Scavenge, but back out if the limiter turns on.
    		released := h.pages.scavenge(bytesToScavenge, func() bool {
    			return gcCPULimiter.limiting()
    		}, forceScavenge)
    
    		mheap_.pages.scav.releasedEager.Add(released)
    
    		// Finish up accounting.
    		now = nanotime()
    		if track {
    			pp.limiterEvent.stop(limiterEventScavengeAssist, now)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top