Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,649 for makeID (0.11 sec)

  1. src/bytes/buffer_test.go

    		}
    
    		rlen := rand.Intn(len(testString))
    		fub := make([]byte, rlen)
    		n, _ := buf.Read(fub)
    		s = s[n:]
    	}
    	empty(t, "TestMixedReadsAndWrites (2)", &buf, s, make([]byte, buf.Len()))
    }
    
    func TestCapWithPreallocatedSlice(t *testing.T) {
    	buf := NewBuffer(make([]byte, 10))
    	n := buf.Cap()
    	if n != 10 {
    		t.Errorf("expected 10, got %d", n)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:31:36 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. src/go/types/check.go

    // [Package] files may be added incrementally via checker.Files.
    func NewChecker(conf *Config, fset *token.FileSet, pkg *Package, info *Info) *Checker {
    	// make sure we have a configuration
    	if conf == nil {
    		conf = new(Config)
    	}
    
    	// make sure we have an info struct
    	if info == nil {
    		info = new(Info)
    	}
    
    	// Note: clients may call NewChecker with the Unsafe package, which is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  3. src/internal/trace/summary_test.go

    	type region struct {
    		startKind trace.EventKind
    		endKind   trace.EventKind
    	}
    	wantRegions := map[string]region{
    		// N.B. "pre-existing region" never even makes it into the trace.
    		//
    		// TODO(mknyszek): Add test case for end-without-a-start, which can happen at
    		// a generation split only.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. .github/workflows/iam-integrations.yaml

              go run docs/iam/access-manager-plugin.go &
              make test-iam
          - name: Test MinIO Old Version data to IAM import current version
            if: matrix.ldap == 'ldaphost:389'
            env:
              _MINIO_LDAP_TEST_SERVER: ${{ matrix.ldap }}
            run: |
              make test-iam-ldap-upgrade-import
          - name: Test LDAP for automatic site replication
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pilot/pkg/xds/discovery_test.go

    				expect(0, 2)
    			},
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			stopCh := make(chan struct{})
    			updateCh := make(chan *model.PushRequest)
    			pushingCh := make(chan struct{}, 1)
    			errCh := make(chan error, 1)
    
    			var partialPushes int32
    			var fullPushes int32
    
    			wg := sync.WaitGroup{}
    
    			fakePush := func(req *model.PushRequest) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. src/slices/slices_test.go

    		{x: make([]struct{}, math.MaxInt/6-5), count: 6, want: make([]struct{}, 6*(math.MaxInt/6-5))},
    		{x: make([]struct{}, math.MaxInt/7-6), count: 7, want: make([]struct{}, 7*(math.MaxInt/7-6))},
    		{x: make([]struct{}, math.MaxInt/8-7), count: 8, want: make([]struct{}, 8*(math.MaxInt/8-7))},
    		{x: make([]struct{}, math.MaxInt/9-8), count: 9, want: make([]struct{}, 9*(math.MaxInt/9-8))},
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. common/config/.hadolint.yml

    #
    # The original version of this file is located in the https://github.com/istio/common-files repo.
    # If you're looking at this file in a different repo and want to make a change, please go to the
    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    ignored:
      - DL3008
      - DL3059
    
    trustedRegistries:
      - gcr.io
      - docker.io
      - quay.io
      - "*.pkg.dev"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:57 UTC 2024
    - 489 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
        }
        integTestImplementation(project(":language-groovy")) {
            because("ClassBytesRepositoryTest makes use of Groovydoc task.")
        }
        integTestImplementation(project(":internal-testing"))
        integTestImplementation(libs.mockitoKotlin)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    		client:                   kubeClient,
    		queue:                    queue.NewQueueWithID(1*time.Second, string(options.ClusterID)),
    		servicesMap:              make(map[host.Name]*model.Service),
    		nodeSelectorsForServices: make(map[host.Name]labels.Instance),
    		nodeInfoMap:              make(map[string]kubernetesNode),
    		workloadInstancesIndex:   workloadinstances.NewIndex(),
    		initialSyncTimedout:      atomic.NewBool(false),
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/zz_generated.deepcopy.go

    	if in.ExtraArgs != nil {
    		in, out := &in.ExtraArgs, &out.ExtraArgs
    		*out = make([]Arg, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExtraVolumes != nil {
    		in, out := &in.ExtraVolumes, &out.ExtraVolumes
    		*out = make([]HostPathMount, len(*in))
    		copy(*out, *in)
    	}
    	if in.ExtraEnvs != nil {
    		in, out := &in.ExtraEnvs, &out.ExtraEnvs
    		*out = make([]EnvVar, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 25.2K bytes
    - Viewed (0)
Back to top