Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 for Reflection (0.14 sec)

  1. 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)
  2. 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)
  3. src/crypto/internal/nistec/p256_asm_ppc64le.s

    	LXVD2X (P1ptr+R20), Z2L
    
    	VCMPEQUD SEL2, IDX, SEL1 // VCEQG SEL2, IDX, SEL1 OK
    
    	// This will result in SEL1 being all 0s or 1s, meaning
    	// the result is either X1L or X2L, no individual byte
    	// selection.
    
    	VSEL X1L, X2L, SEL1, X1L
    	VSEL X1H, X2H, SEL1, X1H
    	VSEL Y1L, Y2L, SEL1, Y1L
    	VSEL Y1H, Y2H, SEL1, Y1H
    	VSEL Z1L, Z2L, SEL1, Z1L
    	VSEL Z1H, Z2H, SEL1, Z1H
    
    	// Add 1 to all bytes in SEL2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/workloadapi/workload.pb.go

    	// even if there are endpoints outside of the preferences.
    	LoadBalancing_STRICT LoadBalancing_Mode = 1
    	// In FAILOVER mode, endpoint selection will prefer endpoints that match all preferences, but failover to groups of endpoints
    	// that match less (or, eventually, none) preferences.
    	// For instance, with `[NETWORK, REGION, ZONE]`, we will send to:
    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. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		},
    		Spec: k8sv1.GatewayClassSpec{
    			ControllerName: constants.ManagedGatewayMeshController,
    		},
    	})
    
    	// ns is more important now that we want to be able to annotate ns for svc, wl waypoint selection
    	// always create the testNS enabled for ambient
    	a.ns.Create(&corev1.Namespace{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   testNS,
    			Labels: map[string]string{"istio.io/dataplane-mode": "ambient"},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    //
    // The candidate modules for a given package in "all" depend only on the initial
    // build list, but we cannot follow the dependencies of a given package until we
    // know which candidate is selected — and that selection may depend on the
    // results of other queries. We need to re-evaluate the "all" queries whenever
    // the module for one or more packages in "all" are resolved.
    func (r *resolver) performPatternAllQueries(ctx context.Context) {
    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. src/crypto/tls/handshake_client_test.go

    	if err != nil {
    		panic(err)
    	}
    	rootCAs := x509.NewCertPool()
    	rootCAs.AddCert(cert)
    
    	config := testConfig.Clone()
    	// Use GetClientCertificate to bypass the client certificate selection logic.
    	config.GetClientCertificate = func(*CertificateRequestInfo) (*Certificate, error) {
    		return &Certificate{
    			Certificate: [][]byte{testRSAPSSCertificate},
    			PrivateKey:  testRSAPrivateKey,
    		}, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			continue
    		}
    
    		// Must be delayed allocation with control plane controller.
    		numDelayedAllocationPending++
    
    		// Did the driver provide information that steered node
    		// selection towards a node that it can support?
    		if statusForClaim(state.podSchedulingState.schedulingCtx, pod.Spec.ResourceClaims[index].Name) != nil {
    			numClaimsWithStatusInfo++
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top