Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for nextB (0.3 sec)

  1. internal/kms/config.go

    	case kesPresent && staticKeyPresent:
    		return false, errors.New("kms: configuration for MinIO KES and static KMS key is present")
    	}
    
    	// Next, we check that all required configuration for the concrete
    	// KMS is present.
    	// For example, the MinIO KMS requires an endpoint or a list of
    	// endpoints and authentication credentials. However, a path to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Indicates whether the tests should be run in deterministic order. Preserving the order guarantees that the complete test
         * (including @BeforeXXX and @AfterXXX) is run in a test thread before the next test is run.
         *
         * Not required.
         *
         * If not present, the order will not be preserved.
         */
        @Internal
        public boolean isPreserveOrder() {
            return preserveOrder;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				status.ContainerStatuses[2].State = kubecontainer.ContainerStateCreated
    			},
    			actions: noAction,
    		},
    		"restartable init container has started; start the next": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				status.ContainerStatuses = status.ContainerStatuses[:1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    		// Emit control flow instructions for block
    		var next *ssa.Block
    		if i < len(f.Blocks)-1 && base.Flag.N == 0 {
    			// If -N, leave next==nil so every block with successors
    			// ends in a JMP (except call blocks - plive doesn't like
    			// select{send,recv} followed by a JMP call).  Helps keep
    			// line numbers for otherwise empty blocks.
    			next = f.Blocks[i+1]
    		}
    		x := s.pp.Next
    		s.SetPos(b.Pos)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/os/signal/doc.go

    working well. This section documents those steps and the overall
    effect changes to signal handler settings by the non-Go code can have
    on Go programs. In rare cases, the non-Go code may run before the Go
    code, in which case the next section also applies.
    
    If the non-Go code called by the Go program does not change any signal
    handlers or masks, then the behavior is the same as for a pure Go
    program.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    	wantNextReq   bool // should it find the next request on the same conn?
    }
    
    func (t handlerBodyCloseTest) connectionHeader() string {
    	if t.reqConnClose {
    		return "Connection: close\r\n"
    	}
    	return ""
    }
    
    var handlerBodyCloseTests = [...]handlerBodyCloseTest{
    	// Small enough to slurp past to the next request +
    	// has Content-Length.
    	0: {
    		bodySize:      20 << 10,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. pilot/pkg/model/endpointshards.go

    				if nie.HealthStatus != UnHealthy || features.SendUnhealthyEndpoints.Load() {
    					needPush = true
    				}
    				newIstioEndpoints = append(newIstioEndpoints, nie)
    			}
    		}
    		// Next, check for endpoints that were in old but no longer exist. If there are any, there is a
    		// removal so we need to push an update.
    		if !needPush {
    			for _, oie := range oldIstioEndpoints {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                if (stk.size() < 2) {
                    return null;
                }
                Iterator<ActivationFrame> f = stk.iterator();
    
                String location = f.next().location;
                ActivationFrame parent = f.next();
    
                return parent.parent.map(p -> p.getLocation(location)).orElse(null);
            };
            final UnaryOperator<String> transformer = s -> {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. cmd/batch-expire.go

    				// Copying toDel to select from objects whose
    				// deletion failed
    				copy(toDelCopy, toDel)
    				var failed int
    				errs := r.Expire(ctx, api, vc, toDel)
    				// reslice toDel in preparation for next retry attempt
    				toDel = toDel[:0]
    				for i, err := range errs {
    					if err != nil {
    						stopFn(toDelCopy[i], err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. cmd/iam.go

    			allDistNames = append(allDistNames, parentUser)
    		}
    	}
    
    	expiredUsers, err := sys.LDAPConfig.GetNonEligibleUserDistNames(allDistNames)
    	if err != nil {
    		// Log and return on error - perhaps it'll work the next time.
    		iamLogIf(GlobalContext, err)
    		return
    	}
    
    	// We ignore any errors
    	_ = sys.store.DeleteUsers(ctx, expiredUsers)
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top