Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,178 for completely (0.13 sec)

  1. src/cmd/go/internal/modindex/scan.go

    		if strings.HasPrefix(name, "_") || strings.HasPrefix(name, ".") {
    			continue
    		}
    		info, err := getFileInfo(absdir, name, fset)
    		if err == errNonSource {
    			// not a source or object file. completely ignore in the index
    			continue
    		} else if err != nil {
    			p.sourceFiles = append(p.sourceFiles, &rawFile{name: name, error: err.Error()})
    			continue
    		} else if info == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // However, in order to prevent ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks
      // from putting the cluster in a state which cannot be recovered from without completely
      // disabling the plugin, ValidatingAdmissionWebhooks and MutatingAdmissionWebhooks are never called
      // on admission requests for ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. src/runtime/metrics/doc.go

    		/cpu/classes metrics.
    
    	/gc/cycles/automatic:gc-cycles
    		Count of completed GC cycles generated by the Go runtime.
    
    	/gc/cycles/forced:gc-cycles
    		Count of completed GC cycles forced by the application.
    
    	/gc/cycles/total:gc-cycles
    		Count of all completed GC cycles.
    
    	/gc/gogc:percent
    		Heap size target percentage configured by the user, otherwise
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. src/runtime/mcentral.go

    //
    // See malloc.go for an overview.
    //
    // The mcentral doesn't actually contain the list of free objects; the mspan does.
    // Each mcentral is two lists of mspans: those with free objects (c->nonempty)
    // and those that are completely allocated (c->empty).
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    )
    
    // Central list of free objects of a given size.
    type mcentral struct {
    	_         sys.NotInHeap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    				t.Error(err)
    			}
    		})
    	}
    }
    
    func TestCacheIntervalNextFromWatchCache(t *testing.T) {
    	// Have the capacity such that it facilitates
    	// filling the interval buffer more than once
    	// completely and then some more - 10 here is
    	// arbitrary.
    	const capacity = 2*bufferSize + 10
    
    	cases := []struct {
    		name string
    		// The total number of events that the watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/transform/transform.go

    				// detect this and break out of the loop with a fatal error.
    				lastFull = true
    				continue
    			}
    			// The destination buffer was too small, but is completely empty.
    			// Return a fatal error as this transformation can never complete.
    			c.fatalError(i, errShortInternal)
    		case ErrShortSrc:
    			if i == 0 {
    				// Save ErrShortSrc in err. All other errors take precedence.
    				err = ErrShortSrc
    				break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                Arrays.asList(ValidationReportLevel.INLINE, ValidationReportLevel.BRIEF));
    
        private enum ValidationReportLevel {
            NONE, // mute validation completely (validation issue collection still happens, it is just not reported!)
            INLINE, // inline, each "internal" problem one line next to mojo invocation
            SUMMARY, // at end, list of plugin GAVs along with ANY validation issues
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  8. src/encoding/xml/typeinfo.go

    		// process it as usual because its name should default to
    		// empty rather than to the field name.
    		finfo.name = tag
    		return finfo, nil
    	}
    
    	if tag == "" {
    		// If the name part of the tag is completely empty, get
    		// default from XMLName of underlying struct if feasible,
    		// or field name otherwise.
    		if xmlname := lookupXMLName(f.Type); xmlname != nil {
    			finfo.xmlns, finfo.name = xmlname.xmlns, xmlname.name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  9. src/os/types_windows.go

    // from windows.FILE_ID_BOTH_DIR_INFO d into the newly created fileStat.
    func newFileStatFromFileIDBothDirInfo(d *windows.FILE_ID_BOTH_DIR_INFO) *fileStat {
    	// The FILE_ID_BOTH_DIR_INFO MSDN documentations isn't completely correct.
    	// FileAttributes can contain any file attributes that is currently set on the file,
    	// not just the ones documented.
    	// EaSize contains the reparse tag if the file is a reparse point.
    	return &fileStat{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

     * `plugins` block class directly - without reflection - and does nothing else. The
     * same strategy can be used for a **script plugin** (a non top-level script) with a
     * body but no `buildscript` block since the classpath is completely determined at
     * the time the specialized program is emitted.
     *
     * @see Program
     * @see PartialEvaluator
     * @see ResidualProgram
     * @see ResidualProgramCompiler
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top