Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 649 for Marks (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/limits.go

    	// to allow for quotation marks
    	MaxDatetimeSizeJSON = 32
    	// MinDurationSizeJSON
    	// Golang allows a string of 0 to be parsed as a duration, so that plus 2 to account for
    	// quotation marks makes 3
    	MinDurationSizeJSON = 3
    	// JSONDateSize is the size of a date serialized as part of a JSON object
    	// RFC 3339 dates require YYYY-MM-DD, and then we add 2 to allow for quotation marks
    	JSONDateSize = 12
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/benchmark/bench.go

    				panic(err)
    			}
    			err = pprof.WriteHeapProfile(f)
    			if err != nil {
    				panic(err)
    			}
    			err = f.Close()
    			if err != nil {
    				panic(err)
    			}
    		}
    	}
    	m.marks = append(m.marks, m.curMark)
    	m.curMark = nil
    }
    
    // shouldPProf returns true if we should be doing pprof runs.
    func (m *Metrics) shouldPProf() bool {
    	return m != nil && len(m.filebase) > 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentResolveResult.java

    public interface BuildableComponentResolveResult extends ComponentResolveResult, ResourceAwareResolveResult {
        /**
         * Marks the component as resolved, with the given graph resolution state.
         */
        void resolved(ComponentGraphResolveState state, ComponentGraphSpecificResolveState graphState);
    
        /**
         * Marks the resolve as failed with the given exception.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 13:05:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/go/doc/testdata/testing.2.golden

    	func (c *B) Error(args ...any)
    
    	// Errorf is equivalent to Logf() followed by Fail(). 
    	func (c *B) Errorf(format string, args ...any)
    
    	// Fail marks the function as having failed but continues ...
    	func (c *B) Fail()
    
    	// FailNow marks the function as having failed and stops its ...
    	func (c *B) FailNow()
    
    	// Failed reports whether the function has failed. 
    	func (c *B) Failed() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableModuleComponentMetaDataResolveResult.java

        @Nullable
        ModuleVersionResolveException getFailure();
    
        /**
         * Marks the module version as resolved, with the given meta-data.
         */
        void resolved(T metaData);
    
        /**
         * Replaces the meta-data for this result. This result must already be resolved.
         */
        void setMetadata(T metaData);
    
        /**
         * Marks the resolve as failed with the given exception.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentIdResolveResult.java

    public interface BuildableComponentIdResolveResult extends ComponentIdResolveResult, ResourceAwareResolveResult {
        /**
         * Marks the component selector as resolved to the specified id.
         */
        void resolved(ComponentIdentifier id, ModuleVersionIdentifier moduleVersionIdentifier);
    
        /**
         * Marks the component selector as resolved to the specified id, but rejected.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. logo/usage_guidelines.md

    those guidelines, and the correct and incorrect usage examples, are particularly
    helpful:
    >Certain marks of The Linux Foundation have been created to enable you to
    >communicate compatibility or interoperability of software or products. In
    >addition to the requirement that any use of a mark to make an assertion of
    >compatibility must, of course, be accurate, the use of these marks must
    >avoid confusion regarding The Linux Foundation’s association with the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. src/internal/dag/alg.go

    func (g *Graph) Topo() []string {
    	topo := make([]string, 0, len(g.Nodes))
    	marks := make(map[string]bool)
    
    	var visit func(n string)
    	visit = func(n string) {
    		if marks[n] {
    			return
    		}
    		for _, to := range g.Edges(n) {
    			visit(to)
    		}
    		marks[n] = true
    		topo = append(topo, n)
    	}
    	for _, root := range g.Nodes {
    		visit(root)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 04 15:31:44 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/InMemoryDecoratedCacheTest.groovy

        def cache = new InMemoryDecoratedCache(target, CacheBuilder.newBuilder().build(), "id", new AtomicReference<FileLock.State>())
    
        def "does not produce value when present in memory and marks completed"() {
            def producer = Mock(Function)
            def completion = Mock(Runnable)
    
            given:
            cache.putLater("key", "value", Stub(Runnable))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/mark_for_compilation_pass.h

    #include "tensorflow/core/common_runtime/optimization_registry.h"
    
    namespace tensorflow {
    
    // The attribute that marks nodes to be grouped into functions by the
    // encapsulate subgraphs pass.
    extern const char* const kXlaClusterAttr;
    
    // Marks a subset of nodes in the graph which are to be clustered
    // with an attribute _XlaCluster=<cluster id> so they are picked up by the
    // EncapsulateSubgraphsPass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 10 22:46:01 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top