Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,027 for relaxed (0.18 sec)

  1. cni/pkg/nodeagent/podcgroupns.go

    	// namespaces are in use and therefore we can no longer discern if that is the
    	// case from within SPIRE agent container (since the container itself is
    	// namespaced). As such, the regex has been relaxed to simply find the pod UID
    	// followed by the container ID with allowances for arbitrary punctuation, and
    	// container runtime prefixes, etc.
    	regexp.MustCompile(`` +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/LambdaSerializationTransformer.java

                        // This limit is 255 arguments as of Java 20. Deserializing that many is not a problem for the current implementation.
                        // The check is here as a future-proofing measure, in case the limit is relaxed or the generated code size grows.
                        if (codeSizeSoFar == 0) {
                            // This is the first lambda to process in this method, but it doesn't fit already - cannot proceed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 14:26:38 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

                DateUtils.PATTERN_RFC1123
            }, false);
            final CookieSpecProvider laxStandardProvider = new RFC6265CookieSpecProvider(
                RFC6265CookieSpecProvider.CompatibilityLevel.RELAXED, publicSuffixMatcher);
            final CookieSpecProvider strictStandardProvider = new RFC6265CookieSpecProvider(
                RFC6265CookieSpecProvider.CompatibilityLevel.STRICT, publicSuffixMatcher);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

    // 1) arguments
    // 2) resource variable arguments
    // See the documentation of EncapsulateSubgraphsInFunctions for the meaning
    // of the arguments.
    //
    // TODO(b/113166435): Ordering constraints on XlaLaunch op can be relaxed.
    Status RewriteSubgraph(const std::vector<OutputTensor>& arg_source_tensors,
                           std::unique_ptr<Graph>* graph_ptr,
                           std::vector<int>* input_permutation,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. src/cmd/covdata/dump.go

    		liveflag = flag.Bool("live", false, "Select only live (executed) functions for dump output.")
    	}
    	d := &dstate{
    		cmd: cmd,
    		cm:  &cmerge.Merger{},
    	}
    	// For these modes (percent, pkglist, func, etc), use a relaxed
    	// policy when it comes to counter mode clashes. For a percent
    	// report, for example, we only care whether a given line is
    	// executed at least once, so it's ok to (effectively) merge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/text/template/doc.go

    (Unlike with || in Go, however, eq is a function call and all the
    arguments will be evaluated.)
    
    The comparison functions work on any values whose type Go defines as
    comparable. For basic types such as integers, the rules are relaxed:
    size and exact type are ignored, so any integer value, signed or unsigned,
    may be compared with any other integer value. (The arithmetic value is compared,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    			continue
    		}
    		v := tag.Name
    		if r.codeDir != "" {
    			v = v[len(r.codeDir)+1:]
    		}
    		// Note: ./codehost/codehost.go's isOriginTag knows about these conditions too.
    		// If these are relaxed, isOriginTag will need to be relaxed as well.
    		if v == "" || v != semver.Canonical(v) {
    			// Ignore non-canonical tags: Stat rewrites those to canonical
    			// pseudo-versions. Note that we compare against semver.Canonical here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top