Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for limiting (0.19 sec)

  1. 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)
  2. 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)
  3. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			wantInitialAttemptTs: timestamp,
    		},
    		{
    			// The queue operations are Add gated pod -> check unschedulablePods -> lift gate & update pod -> Pop.
    			name: "A gated pod is created and scheduled after lifting gate",
    			perPodSchedulingMetricsScenario: func(c *testingclock.FakeClock, queue *PriorityQueue, pod *v1.Pod) {
    				// Create a queue with PreEnqueuePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/runtime/proc.go

    // needm is limited in what routines it can call. In particular
    // it can only call nosplit functions (textflag 7) and cannot
    // do any scheduling that requires an m.
    //
    // In order to avoid needing heavy lifting here, we adopt
    // the following strategy: there is a stack of available m's
    // that can be stolen. Using compare-and-swap
    // to pop from the stack has ABA races, so we simulate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top