Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 83 for Hidden (0.14 sec)

  1. src/runtime/mgc.go

    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    	// of additional memory might be held onto.
    	//
    	// Also, flush the pinner cache, to avoid leaking that memory
    	// indefinitely.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    	Root          string                `json:",omitempty"` // Go root, Go path dir, or module root dir containing this package
    	ConflictDir   string                `json:",omitempty"` // Dir is hidden by this other directory
    	ForTest       string                `json:",omitempty"` // package is only for use in named test
    	Export        string                `json:",omitempty"` // file containing export data (set by go list -export)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  3. src/go/build/build.go

    	return ctxt.Import(".", dir, mode)
    }
    
    // NoGoError is the error used by [Import] to describe a directory
    // containing no buildable Go source files. (It may still contain
    // test files, files hidden by build tags, and so on.)
    type NoGoError struct {
    	Dir string
    }
    
    func (e *NoGoError) Error() string {
    	return "no buildable Go source files in " + e.Dir
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * methods. For example, using <code>project.name</code> can express your intent better than using
         * <code>name</code>. This method also allows you to access project properties from a scope where the property may
         * be hidden, such as, for example, from a method or closure. </p>
         *
         * @return This project. Never returns null.
         */
        Project getProject();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. cmd/erasure-server-pool.go

    		if loi.IsTruncated {
    			last := objects[len(objects)-1]
    			loi.NextMarker = last.Name
    		}
    
    		if merged.lastSkippedEntry != "" {
    			if merged.lastSkippedEntry > loi.NextMarker {
    				// An object hidden by ILM was found during listing. Since the number of entries
    				// fetched from drives is limited, set IsTruncated to true to ask the s3 client
    				// to continue listing if it wishes in order to find if there is more objects.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    	// imported all the correct requirements above, we're probably missing
    	// some sums, so the next build command in -mod=readonly will likely fail.
    	//
    	// We look for non-hidden .go files or subdirectories to determine whether
    	// this is an existing project. Walking the tree for packages would be more
    	// accurate, but could take much longer.
    	empty := true
    	files, _ := os.ReadDir(modRoot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface AccidentalOverrideClashByJvmSignature : KaFirDiagnostic<KtNamedFunction> {
            override val diagnosticClass get() = AccidentalOverrideClashByJvmSignature::class
            val hidden: KaFunctionLikeSymbol
            val overrideDescription: String
            val regular: KaFunctionLikeSymbol
        }
    
        interface JavaTypeMismatch : KaFirDiagnostic<KtExpression> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                <![CDATA[
        public static final String SOURCE_POM = "pom";
    
        public static final String SOURCE_SETTINGS = "settings.xml";
    
        // We don't want this to be parseable...it's sort of 'hidden'
        // default source for this profile is in the pom itself.
        private String source = SOURCE_POM;
    
        public void setSource(String source) {
            this.source = source;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
       * {@link Futures#allAsList(Iterable)} or {@link Futures#successfulAsList(Iterable)}, hidden
       * behind a common interface for testing.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private interface Merger {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          smartAssertTrue(inputs, e, intersect(inputs, ImmutableSet.of(doneCancelled)));
        }
      }
    
      /**
       * {@link Futures#allAsList(Iterable)} or {@link Futures#successfulAsList(Iterable)}, hidden
       * behind a common interface for testing.
       */
      @J2ktIncompatible
      @GwtIncompatible // used only in GwtIncompatible tests
      private interface Merger {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 144.1K bytes
    - Viewed (0)
Back to top