Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for Selections (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[legacy_attribute_snapshotting]]
    ==== Fixed variant selection behavior with `ArtifactView` and `ArtifactCollection`
    
    The dependency resolution APIs for selecting different artifacts or files (`Configuration.getIncoming().artifactView { }` and `Configuration.getIncoming().getArtifacts()`) captured immutable copies of the underlying `Configuration`'s attributes to use for variant selection.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                request.setLocalRepositoryPath(localRepositoryPath);
            }
    
            //
            // Builder, concurrency and parallelism
            //
            // We preserve the existing methods for builder selection which is to look for various inputs in the threading
            // configuration. We don't have an easy way to allow a pluggable builder to provide its own configuration
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    		return nil
    	}
    
    	// Don't process a daemon set until all its creations and deletions have been processed.
    	// For example if daemon set foo asked for 3 new daemon pods in the previous call to manage,
    	// then we do not want to call manage on foo until the daemon pods have been created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    			config: &Config{
    				CipherSuites: []uint16{TLS_RSA_WITH_AES_128_GCM_SHA256},
    				MaxVersion:   VersionTLS12,
    			},
    		}, ""}, // Check that mutual version selection works.
    
    		{ecdsaCert, &ClientHelloInfo{
    			CipherSuites:      []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    			SupportedCurves:   []CurveID{CurveP256},
    			SupportedPoints:   []uint8{pointFormatUncompressed},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        the `uri()` method to handle malformed percent-escapes and characters
        forbidden by `URI`.
     *  Fix: When a connect times out, attempt an alternate route. Previously route
        selection was less efficient when differentiating failures.
     *  New: `Response.peekBody()` lets you access the response body without
        consuming it. This may be handy for interceptors!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ====
    
    In this example, we use a convention plugin `myproject.java-conventions` to expose the test results from a project to Gradle's <<variant_model.adoc#understanding-variant-selection,variant aware dependency management engine>>.
    
    The plugin declares a consumable `binaryTestResultsElements` configuration that represents the binary test results of the `test` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    	pod.ResourceVersion = "1"
    	manager.expectations.ExpectDeletions(logger, rsKey, []string{controller.PodKey(&pod)})
    
    	// A pod added with a deletion timestamp should decrement deletions, not creations.
    	manager.addPod(logger, &pod)
    
    	queueRS, _ := manager.queue.Get()
    	if queueRS != rsKey {
    		t.Fatalf("Expected to find key %v in queue, found %v", rsKey, queueRS)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. pkg/proxy/endpointschangetracker_test.go

    					&BaseEndpointInfo{ip: "10.0.2.2", port: 443, endpoint: "10.0.2.2:443", isLocal: true, ready: true, serving: true, terminating: false},
    				},
    			},
    		},
    		// test deletions from existing state with partially overlapping slices and ports
    		"remove a slice that overlaps with existing state": {
    			startingSlices: []*discovery.EndpointSlice{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOV(D|W|WZ|H|HZ|BZ)load [0] {sym} p:(ADD ptr idx) mem) && sym == nil && p.Uses == 1 => (MOV(D|W|WZ|H|HZ|BZ)loadidx ptr idx mem)
    
    // See comments above concerning selection of indexed vs. non-indexed ops.
    // These cases don't have relocation.
    (MOV(D|W)loadidx ptr (MOVDconst [c]) mem) && ((is16Bit(c) && c%4 == 0) || (buildcfg.GOPPC64 >= 10 && is32Bit(c))) => (MOV(D|W)load [int32(c)] ptr mem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/go/build/build.go

    	BinDir        string   // command install directory ("" if unknown)
    	Goroot        bool     // package found in Go root
    	PkgObj        string   // installed .a file
    	AllTags       []string // tags that can influence file selection in this directory
    	ConflictDir   string   // this directory shadows Dir in $GOPATH
    	BinaryOnly    bool     // cannot be rebuilt from source (has //go:binary-only-package comment)
    
    	// Source files
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top