Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 283 for makeID (0.83 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    * created lazily
    * iterated over
    * filtered
    * combined
    
    _Lazy creation_ of a file collection is useful when evaluating the files that make up a collection when a build runs.
    In the following example, we query the file system to find out what files exist in a particular directory and then make those into a file collection:
    
    ====
    include::sample[dir="snippets/files/fileCollections/kotlin",files="build.gradle.kts[tags=closure]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Use this option to choose the preferred format.
    You should only pick one for your project.
    
    It's a good idea to commit this file to VCS (as long as you trust your VCS).
    If you use git and use the binary version, make sure to make it treat this file as binary, by adding this to your `.gitattributes` file:
    
    ----
    *.gpg           binary
    ----
    
    You can also ask Gradle to export all trusted keys without updating the verification metadata file:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    				bind.bindToPort = true
    			} else if strings.HasPrefix(egressListener.IstioListener.Bind, model.UnixAddressPrefix) {
    				// If the bind is a Unix domain socket, set bindtoPort to true as it makes no
    				// sense to have ORIG_DST listener for unix domain socket listeners.
    				bind.bindToPort = true
    			}
    		}
    
    		// If capture mode is NONE i.e., bindToPort is true, and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    	if !dwarfEnabled(ctxt) {
    		return
    	}
    
    	d := &dwctxt{
    		linkctxt: ctxt,
    		ldr:      ctxt.loader,
    		arch:     ctxt.Arch,
    		tmap:     make(map[string]loader.Sym),
    		tdmap:    make(map[loader.Sym]loader.Sym),
    		rtmap:    make(map[loader.Sym]loader.Sym),
    	}
    	d.typeRuntimeEface = d.lookupOrDiag("type:runtime.eface")
    	d.typeRuntimeIface = d.lookupOrDiag("type:runtime.iface")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    `maxParallelForks` — default: 1::
    You can run your tests in parallel by setting this property to a value greater than 1. This may make your test suites complete faster, particularly if you run them on a multi-core CPU. When using parallel test execution, make sure your tests are properly isolated from one another. Tests that interact with the filesystem are particularly prone to conflict, causing intermittent test failures.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    // a deletion list contains deletions
    func diffListsOfMaps(original, modified []interface{}, schema LookupPatchMeta, mergeKey string, diffOptions DiffOptions) ([]interface{}, []interface{}, error) {
    	patch := make([]interface{}, 0, len(modified))
    	deletionList := make([]interface{}, 0, len(original))
    
    	originalSorted, err := sortMergeListsByNameArray(original, schema, mergeKey, false)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    		result = append(result, buildTLSVirtualService(r, obj)...)
    	}
    
    	// for gateway routes, build one VS per gateway+host
    	gatewayRoutes := make(map[string]map[string]*config.Config)
    	// for mesh routes, build one VS per namespace+host
    	meshRoutes := make(map[string]map[string]*config.Config)
    	for _, obj := range r.HTTPRoute {
    		buildHTTPVirtualServices(r, obj, gatewayRoutes, meshRoutes)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    	pconn = &persistConn{
    		t:             t,
    		cacheKey:      cm.key(),
    		reqch:         make(chan requestAndChan, 1),
    		writech:       make(chan writeRequest, 1),
    		closech:       make(chan struct{}),
    		writeErrCh:    make(chan error, 1),
    		writeLoopDone: make(chan struct{}),
    	}
    	trace := httptrace.ContextClientTrace(ctx)
    	wrapErr := func(err error) error {
    		if cm.proxyURL != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. cmd/erasure-healing_test.go

    				t.Fatal(err)
    			}
    			bucket := "bucket"
    			object := "object"
    
    			data := make([]byte, test.dataSize)
    			_, err = rand.Read(data)
    			if err != nil {
    				t.Fatal(err)
    			}
    			var opts ObjectOptions
    
    			err = obj.MakeBucket(ctx, bucket, MakeBucketOptions{})
    			if err != nil {
    				t.Fatalf("Failed to make a bucket - %v", err)
    			}
    
    			_, err = obj.PutObject(ctx, bucket, object,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		"n.com": "240.240.121.61",
    		"o.com": "240.240.122.71",
    	}
    
    	allocateAndValidate := func() {
    		gotServices := autoAllocateIPs(model.SortServicesByCreationTime(inServices))
    		gotIPMap := make(map[string]string)
    		serviceIPMap := make(map[string]string)
    		for _, svc := range gotServices {
    			if v, ok := gotIPMap[svc.AutoAllocatedIPv4Address]; ok && v != svc.Hostname.String() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top