Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 78 for entryAt (0.55 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    This means that generation is actually a convenient tool for _updating_ a verification file:
    
    * Checksum entries generated by Gradle will have a clear `origin` that starts with "Generated by Gradle", which is a good indicator that an entry needs to be reviewed,
    * Entries added by hand will immediately be accounted for, and appear at the right location after writing the file,
    * The header comments of the file will be preserved, i.e. comments before the root XML node.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            static Transformation fromMap(String name, Map<String, List<String>> artifactWithDependencies) {
                Iterables.getOnlyElement(artifactWithDependencies.entrySet()).with { entry -> new Transformation(name, entry.key, entry.value) }
            }
    
            Transformation(String name, String artifact, List<String> dependencies) {
                this.name = name
                this.artifact = artifact
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    			t.Fatalf("session cache should have evicted key: %s", keys[i])
    		}
    	}
    
    	// Touch entry 2. LRU should evict 3 next.
    	cache.Get(keys[2])
    	cache.Put(keys[0], &cs[0])
    	if s, ok := cache.Get(keys[3]); ok || s != nil {
    		t.Fatalf("session cache should have evicted key 3")
    	}
    
    	// Update entry 0 in place.
    	cache.Put(keys[0], &cs[3])
    	if s, ok := cache.Get(keys[0]); !ok || s != &cs[3] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                            (m, d) -> m.put(d.getFirst(), Arrays.asList(d.getSecond().split(","))), HashMap::putAll));
                }
                propMap.put(DEFAULT_LABEL_VALUES, map);
            }
            return map.entrySet().stream().flatMap(e -> {
                final String key = e.getKey();
                if (StringUtil.isEmpty(key) || userBean
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    If available, Gradle uses this entry instead of running the configuration phase.
    The cache entry contains information about the set of tasks to run, along with their configuration and dependency information.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	//
    	// For regions of the address space that are not backed by the
    	// Go heap, the arena map contains nil.
    	//
    	// Modifications are protected by mheap_.lock. Reads can be
    	// performed without locking; however, a given entry can
    	// transition from nil to non-nil at any time when the lock
    	// isn't held. (Entries never transitions back to nil.)
    	//
    	// In general, this is a two-level mapping consisting of an L1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    type DestinationHashMap map[*networking.HTTPRouteDestination]*networking.LoadBalancerSettings_ConsistentHashLB
    
    // VirtualHostWrapper is a context-dependent virtual host entry with guarded routes.
    // Note: Currently we are not fully utilizing this structure. We could invoke this logic
    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    		{
    			"\n{{with .X}}<a>{{else}}<a{{end}}",
    			"z:2:7: {{with}} branches",
    		},
    		{
    			"{{range .Items}}<a{{end}}",
    			`z:1: on range loop re-entry: "<" in attribute name: "<a"`,
    		},
    		{
    			"\n{{range .Items}} x='<a{{end}}",
    			"z:2:8: on range loop re-entry: {{range}} branches",
    		},
    		{
    			"{{range .Items}}<a{{if .X}}{{break}}{{end}}>{{end}}",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // TFLite subgraphs do not necessarily have names, though MLIR functions must
    // have them, so we generate a name for subgraphs that are missing one here.
    // Note: in TFLite, the first subgraph is the entry point, and in MLIR that
    // represents TFLite, this entry point must be called "main"
    std::string SubgraphName(bool set_implicit_main_func, unsigned index,
                             const tflite::SubGraphT& subgraph) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    // treated like an ordinary parameter list and thus may contain multiple
    // entries where the spec permits exactly one. Consequently, the corresponding
    // field in the AST (ast.FuncDecl.Recv) field is not restricted to one entry.
    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/build/constraint"
    	"go/internal/typeparams"
    	"go/scanner"
    	"go/token"
    	"strings"
    )
    
    // The parser structure holds the parser's internal state.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top