Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 111 for whatis1 (0.17 sec)

  1. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    var quotaCmdInitialized bool
    var quotaCmdLock sync.RWMutex
    
    // If we later get a filesystem that uses project quota semantics other than
    // XFS, we'll need to change this.
    // Higher levels don't need to know what's inside
    type linuxFilesystemType struct {
    	name             string
    	typeMagic        int64 // Filesystem magic number, per statfs(2)
    	maxQuota         int64
    	allowEmptyOutput bool // Accept empty output from "quota" command
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. src/strconv/decimal.go

    func shouldRoundUp(a *decimal, nd int) bool {
    	if nd < 0 || nd >= a.nd {
    		return false
    	}
    	if a.d[nd] == '5' && nd+1 == a.nd { // exactly halfway - round to even
    		// if we truncated, a little higher than what's recorded - always round up
    		if a.trunc {
    			return true
    		}
    		return nd > 0 && (a.d[nd-1]-'0')%2 != 0
    	}
    	// not halfway - digit tells all
    	return a.d[nd] >= '5'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 15 19:41:25 UTC 2017
    - 11K bytes
    - Viewed (0)
  3. src/encoding/gob/debug.go

    	n := int(t)
    	if n > len(tabs) {
    		n = len(tabs)
    	}
    	return tabs[0:n]
    }
    
    func (t tab) print() {
    	fmt.Fprint(os.Stderr, t)
    }
    
    // A peekReader wraps an io.Reader, allowing one to peek ahead to see
    // what's coming without stealing the data from the client of the Reader.
    type peekReader struct {
    	r    io.Reader
    	data []byte // read-ahead data
    }
    
    // newPeekReader returns a peekReader that wraps r.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/create.go

    	if manager != "" {
    		return manager
    	}
    	return prefixFromUserAgent(userAgent)
    }
    
    // prefixFromUserAgent takes the characters preceding the first /, quote
    // unprintable character and then trim what's beyond the
    // FieldManagerMaxLength limit.
    func prefixFromUserAgent(u string) string {
    	m := strings.Split(u, "/")[0]
    	buf := bytes.NewBuffer(nil)
    	for _, r := range m {
    		// Ignore non-printable characters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/BuildCacheClientModule.java

                buildOperationListener
            );
        }
    
        @Provides
        CurrentBuildOperationRef createCurrentBuildOperationRef() {
            return new CurrentBuildOperationRef();
        }
    
        // TODO What's the difference between BuildOperationExecutionListener
        //      (which seems to be called) and BuildOperationListener (which
        //      seems not to be called)?
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 07:11:58 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/first-steps.md

    Let's use the tools provided by **FastAPI** to handle security.
    
    ## How it looks
    
    Let's first just use the code and see how it works, and then we'll come back to understand what's happening.
    
    ## Create `main.py`
    
    Copy the example in a file `main.py`:
    
    === "Python 3.9+"
    
        ```Python
        {!> ../../../docs_src/security/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

                // All java files are just passed to the compile method of the JavaCompiler and aren't processed internally by the Groovy Compiler.
                // Since we're maintaining our own list of Java files independent of what's passed by the Groovy compiler, adding a non-existent java file
                // to the sources won't cause any issues.
                unit.addSources(new File[]{new File("ForceStubGeneration.java")});
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

        void "executes class with broken constructor"() {
            when: process(ATestNGClassWithBrokenConstructor)
    
            then:
            //below needs to revisited when we attempt to fix the problem
            //e.g. decide what's the behavior we want in this scenario
            1 * processor.started({ it.id == 1} , _)
            1 * processor.started({ it.name == 'initializationError' && it.className == ATestNGClassWithBrokenConstructor.name }, _)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. pkg/log/config.go

    	buf[24] = byte((micros/10)%10) + '0'
    	buf[25] = byte((micros)%10) + '0'
    	buf[26] = 'Z'
    
    	enc.AppendString(string(buf))
    }
    
    func updateScopes(options *Options) error {
    	// snapshot what's there
    	allScopes := Scopes()
    
    	// Join defaultOutputLevels and outputLevels
    	levels := options.defaultOutputLevels
    	if levels == "" {
    		levels = options.outputLevels
    	} else if options.outputLevels != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/start.go

    }
    
    func child(reportCrashes, upload bool, uploadStartTime time.Time, uploadURL string) {
    	log.SetPrefix(fmt.Sprintf("telemetry-sidecar (pid %v): ", os.Getpid()))
    
    	// Start crashmonitoring and uploading depending on what's requested
    	// and wait for the longer running child to complete before exiting:
    	// if we collected a crash before the upload finished, wait for the
    	// upload to finish before exiting
    	var g errgroup.Group
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top