Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for confv1 (1.35 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    	(MOVBload [off1+int32(off2)] {sym} ptr mem)
    (MOVBUload [off1] {sym} (ADDconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    	(MOVBUload [off1+int32(off2)] {sym} ptr mem)
    (MOVHload [off1] {sym} (ADDconst [off2] ptr) mem) && is32Bit(int64(off1)+off2)
    	&& (ptr.Op != OpSB || !config.ctxt.Flag_dynlink) =>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    			orphanPod, err := clientset.CoreV1().Pods("default").Create(context.Background(), orphanPod, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("Creating orphan pod: %v", err)
    			}
    
    			if err := wait.PollUntilContextTimeout(ctx, 100*time.Millisecond, wait.ForeverTestTimeout, false, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. pkg/config/validation/validation_test.go

    	telemetry "istio.io/api/telemetry/v1alpha1"
    	api "istio.io/api/type/v1beta1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    const (
    	// Config name for testing
    	someName = "foo"
    	// Config namespace for testing.
    	someNamespace = "bar"
    )
    
    func TestValidateMaxServerConnectionAge(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    	conf := &tls.Config{
    		// GetConfigForClient requires specifying a full tls.Config so we must set
    		// NextProtos ourselves.
    		NextProtos:   []string{"h2"},
    		Certificates: []tls.Certificate{cert},
    	}
    	testAutomaticHTTP2_ListenAndServe(t, &tls.Config{
    		GetConfigForClient: func(clientHello *tls.ClientHelloInfo) (*tls.Config, error) {
    			return conf, nil
    		},
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// source of all configuration
    	cfg := config.NewPodConfig(config.PodConfigNotificationIncremental, kubeDeps.Recorder, kubeDeps.PodStartupLatencyTracker)
    
    	// TODO:  it needs to be replaced by a proper context in the future
    	ctx := context.TODO()
    
    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    	}
    	// fix stale ARN's in replication config and endpoint mismatch between site config and
    	// targets associated to this config.
    	if rcfg != nil {
    		for _, rule := range rcfg.Rules {
    			if rule.Status != sreplication.Status(replication.Disabled) {
    				tgt, isValidARN := arnTgtMap[rule.Destination.ARN] // detect stale ARN in replication config
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	}
    }
    
    type replicationConfig struct {
    	Config  *replication.Config
    	remotes *madmin.BucketTargets
    }
    
    func (c replicationConfig) Empty() bool {
    	return c.Config == nil
    }
    
    func (c replicationConfig) Replicate(opts replication.ObjectOpts) bool {
    	return c.Config.Replicate(opts)
    }
    
    // Resync returns true if replication reset is requested
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	}
    
    	// Prepare Go embed config if needed.
    	// Unlike the import config, it's okay for the embed config to be empty.
    	var embedcfg []byte
    	if len(p.Internal.Embed) > 0 {
    		var embed struct {
    			Patterns map[string][]string
    			Files    map[string]string
    		}
    		embed.Patterns = p.Internal.Embed
    		embed.Files = make(map[string]string)
    		for _, file := range p.EmbedFiles {
    			embed.Files[file] = filepath.Join(p.Dir, file)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    archiveBaseName = name
                }
    
                ["api1", "api2"].each { conf ->
                    tasks.register("resolve\$conf", Copy) {
                        duplicatesStrategy = 'INCLUDE'
                        def artifacts = configurations."\$conf".incoming.artifactView {
                            attributes { it.attribute(artifactType, 'transformed') }
                        }.artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          }
        },
        "node_modules/eslint-config-prettier": {
          "version": "8.8.0",
          "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.8.0.tgz",
          "integrity": "sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==",
          "dev": true,
          "bin": {
            "eslint-config-prettier": "bin/cli.js"
          },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
Back to top