Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for preferGo (0.16 sec)

  1. src/net/dnsclient_unix_test.go

    					Response: true,
    					RCode:    dnsmessage.RCodeSuccess,
    				},
    				Questions: q.Questions,
    			}
    			if n == "udp" {
    				r.Header.Truncated = true
    			}
    			return r, nil
    		},
    	}
    	r := Resolver{PreferGo: true, Dial: fake.DialContext}
    	for _, tt := range dnsTransportFallbackTests {
    		ctx, cancel := context.WithCancel(context.Background())
    		defer cancel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    noMoreExcludes()
                    prefers('2.5.6')
                    strictly(null)
                    rejects()
                }
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                dependency('commons-collections:commons-collections:3.2.2') {
                    noMoreExcludes()
                    prefers(null)
                    strictly('3.2.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_test.go

    		},
    		{
    			name: "client prefers AES-GCM, server doesn't have hardware AES (pick ChaCha)",
    			clientCiphers: []uint16{
    				TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
    				TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    				TLS_RSA_WITH_AES_128_CBC_SHA,
    			},
    			serverHasAESGCM: false,
    			expectedCipher:  TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
    		},
    		{
    			name: "client prefers AES-GCM, server has hardware AES (pick AES-GCM)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            outputContains "Found dependency: 'org:test3'."
            outputContains "Found bundle: '[org:test:1.0, org:test2:{require 1.0.0; prefer 1.1.0; reject 1.0.5}]'."
            outputContains "Found plugin: 'com.acme.greeter:1.4'."
            outputContains "Found plugin: 'com.acme.greeter2:{require 1.0.0; prefer 1.1.0; reject 1.0.5}'."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let hasVerifier = 1;
    
    
     let extraClassDeclaration = [{
        int num_branches() { return getBranches().size(); }
    
        // Gets function corresponding branch # `index`.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveBranchFunction(::mlir::SymbolTableCollection* table, int index) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	// Prefer traffic in the same region.
    	LoadBalancing_REGION LoadBalancing_Scope = 1
    	// Prefer traffic in the same zone.
    	LoadBalancing_ZONE LoadBalancing_Scope = 2
    	// Prefer traffic in the same subzone.
    	LoadBalancing_SUBZONE LoadBalancing_Scope = 3
    	// Prefer traffic on the same node.
    	LoadBalancing_NODE LoadBalancing_Scope = 4
    	// Prefer traffic in the same cluster.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                } else if (!mainGetter.shouldImplement() && metadata.shouldImplement()) {
                    // Prefer a real method over synthetic
                    mainGetter = metadata;
                } else if (mainGetter.getReturnType().equals(Boolean.TYPE) && !metadata.getReturnType().equals(Boolean.TYPE)) {
                    // Prefer non-boolean over boolean
                    mainGetter = metadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    //
    // chooseArbitrarily prefers module paths that were already in the build list at
    // the start of 'go get', prefers modules that provide packages over those that
    // do not, and chooses the first module meeting those criteria (so biases toward
    // longer paths).
    func (r *resolver) chooseArbitrarily(cs pathSet) (isPackage bool, m module.Version) {
    	// Prefer to upgrade some module that was already in the build list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    These include sophisticated version constraints (`prefer`, `strictly`, `reject`), dependency constraints, and `platform` dependencies.
    
    If you have been using the `IMPROVED_POM_SUPPORT` feature preview, playing with constraints or prefer, reject and other specific version indications, then make sure to take a good look at your dependency resolution results.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    				checksumInfo.Algorithm, checksumInfo.Hash, erasure.ShardSize())
    
    			// Prefer local disks
    			prefer[index] = disk.Hostname() == ""
    		}
    
    		written, err := erasure.Decode(ctx, writer, readers, partOffset, partLength, partSize, prefer)
    		// Note: we should not be defer'ing the following closeBitrotReaders() call as
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top