Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for Visiting (0.37 sec)

  1. pkg/controller/statefulset/stateful_set_control_test.go

    		t.Error("Failed to set updatedReplicas correctly")
    	}
    
    	// now mutate a pod's identity
    	pods, err := om.podsLister.List(labels.Everything())
    	if err != nil {
    		t.Fatalf("Error listing pods: %v", err)
    	}
    	if len(pods) != 3 {
    		t.Fatalf("Expected 3 pods, got %d", len(pods))
    	}
    	sort.Sort(ascendingOrdinal(pods))
    	pods[0].Name = "goo-0"
    	om.podsIndexer.Update(pods[0])
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // Although they are Go source files, the paths may not end in ".go".
    //
    // The -m flag causes list to list modules instead of packages.
    //
    // When listing modules, the -f flag still specifies a format template
    // applied to a Go struct, but now a Module struct:
    //
    //	type Module struct {
    //	    Path       string        // module path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

            <field xdoc.separator="blank" xml.insertParentFieldsUpTo="reporting">
              <name>profiles</name>
              <version>4.0.0+</version>
              <description>A listing of project-local build profiles which will modify the build process
                when activated.</description>
              <association>
                <type>Profile</type>
                <multiplicity>*</multiplicity>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    // then be retried by healing. In the case of permanent deletes, until the replication is completed on the
    // target cluster, the object version is marked deleted on the source and hidden from listing. It is permanently
    // deleted from the source when the VersionPurgeStatus changes to "Complete", i.e after replication succeeds
    // on target.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/net/http/server.go

    	// werr is set to the first write error to rwc.
    	// It is set via checkConnErrorWriter{w}, where bufw writes.
    	werr error
    
    	// r is bufr's read source. It's a wrapper around rwc that provides
    	// io.LimitedReader-style limiting (while reading request headers)
    	// and functionality to support CloseNotifier. See *connReader docs.
    	r *connReader
    
    	// bufr reads from r.
    	bufr *bufio.Reader
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.5.md

    * Fix kubectl get -f <file> -o <nondefault printer> so it prints all items in the file ([#39038](https://github.com/kubernetes/kubernetes/pull/39038), [@ncdc](https://github.com/ncdc))
    * Endpoints, that tolerate unready Pods, are now listing Pods in state Terminating as well ([#37093](https://github.com/kubernetes/kubernetes/pull/37093), [@simonswine](https://github.com/simonswine))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    func PackagesAndErrors(ctx context.Context, opts PackageOpts, patterns []string) []*Package {
    	ctx, span := trace.StartSpan(ctx, "load.PackagesAndErrors")
    	defer span.Done()
    
    	for _, p := range patterns {
    		// Listing is only supported with all patterns referring to either:
    		// - Files that are part of the same directory.
    		// - Explicit package paths or patterns.
    		if strings.HasSuffix(p, ".go") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

        if ! gcloud compute networks delete --project "${NETWORK_PROJECT}" --quiet "${NETWORK}"; then
          echo "Failed to delete network '${NETWORK}'. Listing firewall-rules:"
          gcloud compute firewall-rules --project "${NETWORK_PROJECT}" list --filter="network=${NETWORK}"
          return 1
        fi
      fi
    }
    
    function delete-cloud-nat-router() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    When that form is used, the variable is declared at the end of the
    TypeSwitchCase in the <a href="#Blocks">implicit block</a> of each clause.
    In clauses with a case listing exactly one type, the variable
    has that type; otherwise, the variable has the type of the expression
    in the TypeSwitchGuard.
    </p>
    
    <p>
    Instead of a type, a case may use the predeclared identifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. cmd/object-handlers_test.go

    	}
    	err = xml.Unmarshal(mpartRespBytes, &mpartResp)
    	if err != nil {
    		t.Fatalf("[%s] Failed to unmarshal NewMultipartUpload response <ERROR> %v", instanceType, err)
    	}
    
    	// Upload a part for listing purposes.
    	rec = httptest.NewRecorder()
    	req, err = newTestSignedRequestV4(http.MethodPut,
    		getPutObjectPartURL("", bucketName, testObject, mpartResp.UploadID, "1"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top