Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 129 for mod$ (0.11 sec)

  1. cmd/iam.go

    // active on the server.
    type UsersSysType string
    
    // Types of users configured in the server.
    const (
    	// This mode uses the internal users system in MinIO.
    	MinIOUsersSysType UsersSysType = "MinIOUsersSys"
    
    	// This mode uses users and groups from a configured LDAP
    	// server.
    	LDAPUsersSysType UsersSysType = "LDAPUsersSys"
    )
    
    const (
    	statusEnabled  = "enabled"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue.go

    	// one instance of the pod.
    	npm.delete(pi.Pod)
    
    	var nodeName string
    	if nominatingInfo.Mode() == framework.ModeOverride {
    		nodeName = nominatingInfo.NominatedNodeName
    	} else if nominatingInfo.Mode() == framework.ModeNoop {
    		if pi.Pod.Status.NominatedNodeName == "" {
    			return
    		}
    		nodeName = pi.Pod.Status.NominatedNodeName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	}
    	// Show what created goroutine, except main goroutine (goid 1).
    	f := findfunc(ancestor.gopc)
    	if f.valid() && showfuncinfo(f.srcFunc(), false, abi.FuncIDNormal) && ancestor.goid != 1 {
    		// In ancestor mode, we'll already print the goroutine ancestor.
    		// Pass 0 for the goid parameter so we don't print it again.
    		printcreatedby1(f, ancestor.gopc, 0)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    			defer zippedFile.Close()
    			extractedFilePath := filepath.Join(targetDir, file.Name)
    			if file.FileInfo().IsDir() {
    				return os.MkdirAll(extractedFilePath, file.Mode())
    			}
    			outputFile, err := os.OpenFile(extractedFilePath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, file.Mode())
    			if err != nil {
    				return err
    			}
    			defer outputFile.Close()
    			_, err = io.Copy(outputFile, zippedFile)
    			return err
    		}()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    	allCredentials, err := globalIAMSys.ListUsers(ctx)
    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	// Add ldap users which have mapped policies if in LDAP mode
    	// FIXME(vadmeste): move this to policy info in the future
    	ldapUsers, err := globalIAMSys.ListLDAPUsers(ctx)
    	if err != nil && err != errIAMActionNotAllowed {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (consoleType != null) {
                allArgs.add("--console=" + TextUtil.toLowerCaseLocaleSafe(consoleType.toString()));
            }
    
            if (warningMode != null) {
                allArgs.add("--warning-mode=" + TextUtil.toLowerCaseLocaleSafe(warningMode.toString()));
            }
    
            if (disableToolchainDownload) {
                allArgs.add("-Porg.gradle.java.installations.auto-download=false");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	// profiler, but without a guarantee of exclusive access to CPU resources
    	// that is likely to be a flaky test.
    
    	// Require the smaller value to be within 10%, or 40% in short mode.
    	maxDiff := 0.10
    	if testing.Short() {
    		maxDiff = 0.40
    	}
    
    	compare := func(a, b time.Duration, maxDiff float64) error {
    		if a <= 0 || b <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller.go

    		jm.recorder.Event(&job, v1.EventTypeWarning, "UnknownCompletionMode", "Skipped Job sync because completion mode is unknown")
    		return nil
    	}
    
    	completionMode := getCompletionMode(&job)
    	action := metrics.JobSyncActionReconciling
    
    	defer func() {
    		result := "success"
    		if rErr != nil {
    			result = "error"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                                .inputStream(is)
                                .build());
                    } catch (XmlReaderException ne) {
                        // still unreadable even in non-strict mode, rethrow original error
                        throw e;
                    }
    
                    Severity severity = request.isProjectBuild() ? Severity.ERROR : Severity.WARNING;
                    problems.add(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    				}
    			}
    		}
    		if !change && !deadChange {
    			break
    		}
    		iters++
    		if (iters > itersLimit || debug >= 2) && change {
    			// We've done a suspiciously large number of rewrites (or we're in debug mode).
    			// As of Sep 2021, 90% of rewrites complete in 4 iterations or fewer
    			// and the maximum value encountered during make.bash is 12.
    			// Start checking for cycles. (This is too expensive to do routinely.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top