Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,639 for ensure (0.22 sec)

  1. internal/config/errors.go

    	)
    
    	ErrUnsupportedBackend = newErrFn(
    		"Unable to write to the backend",
    		"Please ensure your drive supports O_DIRECT",
    		"",
    	)
    
    	ErrUnableToWriteInBackend = newErrFn(
    		"Unable to write to the backend",
    		"Please ensure MinIO binary has write permissions for the backend",
    		`Verify if MinIO binary is running as the same user who has write permissions for the backend`,
    	)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 22:25:32 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. src/runtime/metrics.go

    // are populated lazily by its ensure method.
    type statAggregate struct {
    	ensured   statDepSet
    	heapStats heapStatsAggregate
    	sysStats  sysStatsAggregate
    	cpuStats  cpuStatsAggregate
    	gcStats   gcStatsAggregate
    }
    
    // ensure populates statistics aggregates determined by deps if they
    // haven't yet been populated.
    func (a *statAggregate) ensure(deps *statDepSet) {
    	missing := deps.difference(a.ensured)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/cmd/go/internal/lockedfile/internal/filelock/filelock.go

    //
    // If f's descriptor is already read- or write-locked, the behavior of Lock is
    // unspecified.
    //
    // Closing the file may or may not release the lock promptly. Callers should
    // ensure that Unlock is always called when Lock succeeds.
    func Lock(f File) error {
    	return lock(f, writeLock)
    }
    
    // RLock places an advisory read lock on the file, blocking until it can be locked.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/runtime/tracebackx_test.go

    package runtime
    
    func XTestSPWrite(t TestingT) {
    	// Test that we can traceback from the stack check prologue of a function
    	// that writes to SP. See #62326.
    
    	// Start a goroutine to minimize the initial stack and ensure we grow the stack.
    	done := make(chan bool)
    	go func() {
    		testSPWrite() // Defined in assembly
    		done <- true
    	}()
    	<-done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 509 bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    		scale *= rpt.options.Ratio
    	}
    	s := &StackSet{
    		Total:   rpt.total,
    		Scale:   scale,
    		Type:    rpt.options.SampleType,
    		Unit:    unit,
    		Stacks:  []Stack{},       // Ensure non-nil
    		Sources: []StackSource{}, // Ensure non-nil
    	}
    	s.makeInitialStacks(rpt)
    	s.fillPlaces()
    	s.assignColors()
    	return *s
    }
    
    func (s *StackSet) makeInitialStacks(rpt *Report) {
    	type key struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. src/go/types/alias.go

    }
    
    // NewAlias creates a new Alias type with the given type name and rhs.
    // rhs must not be nil.
    func NewAlias(obj *TypeName, rhs Type) *Alias {
    	alias := (*Checker)(nil).newAlias(obj, rhs)
    	// Ensure that alias.actual is set (#65455).
    	alias.cleanup()
    	return alias
    }
    
    // Obj returns the type name for the declaration defining the alias type a.
    // For instantiated types, this is same as the type name of the origin type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WaitAtEndOfBuildFixture.groovy

            """.stripIndent()
        }
    
        /**
         * Generates build logic to ensure builds last for a given minimum time.
         *
         * This is used to ensure that the lastModified() timestamps actually change in between builds.
         * If the build is very fast, the timestamp of the file will not change and the JDK file watch service won't see the change.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SymlinkContinuousIntegrationTest.groovy

            def linkdir = baseDir.createDir("linkdir")
            def symlink = linkdir.file("link")
            // Since we remove symlinks at the end of the build from the VFS, we
            // need an existing sibling of the symlink to ensure the parent directory of
            // the symlink is watched between builds.
            linkdir.file("existing").createFile()
            buildFile << """
        task echo {
            def symlink = file("${symlink.toURI()}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  9. manifests/charts/gateways/istio-ingress/files/profile-stable.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
  10. okhttp/src/main/resources/META-INF/proguard/okhttp3.pro

    -keeppackagenames okhttp3.internal.publicsuffix.*
    -adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
    
    # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
    -dontwarn org.codehaus.mojo.animal_sniffer.*
    
    # OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 682 bytes
    - Viewed (0)
Back to top