Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,828 for okdown (0.14 sec)

  1. src/debug/dwarf/entry.go

    			vers := b.format.version()
    			if vers == 0 {
    				b.error("unknown version for DW_FORM_ref_addr")
    			} else if vers == 2 {
    				val = Offset(b.addr())
    			} else {
    				is64, known := b.format.dwarf64()
    				if !known {
    					b.error("unknown size for DW_FORM_ref_addr")
    				} else if is64 {
    					val = Offset(b.uint64())
    				} else {
    					val = Offset(b.uint32())
    				}
    			}
    		case formRef1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/features/features.go

    func KnownFeatures(f *FeatureList) []string {
    	var known []string
    	for k, v := range *f {
    		if v.HiddenInHelpText {
    			continue
    		}
    
    		pre := ""
    		if v.PreRelease != featuregate.GA {
    			pre = fmt.Sprintf("%s - ", v.PreRelease)
    		}
    		known = append(known, fmt.Sprintf("%s=true|false (%sdefault=%t)", k, pre, v.Default))
    	}
    	sort.Strings(known)
    	return known
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/PropertyAccess.java

    import java.util.Map;
    
    /**
     * Provides dynamic access to properties of some object.
     */
    public interface PropertyAccess {
        /**
         * Returns true when this object is known to have the given property.
         *
         * <p>Note that not every property is known. Some properties require an attempt to get or set their value before they are discovered.</p>
         */
        boolean hasProperty(String name);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScope.kt

         *
         * This function needs to retrieve a set of all possible names before processing the scope.
         * The overload with `names: Collection<Name>` should be used when the candidate name set is known.
         */
        public fun getCallableSymbols(nameFilter: KaScopeNameFilter = { true }): Sequence<KaCallableSymbol>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ScenarioDefinition.java

        /**
         * The Gradle arguments.
         */
        List<String> getArgs();
    
        /**
         * The Gradle JVM args. Null if not known
         */
        @Nullable
        List<String> getGradleOpts();
    
        /**
         * Was the daemon used. Null if not known
         */
        @Nullable
        Boolean getDaemon();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/language/BinaryCollection.java

         *
         * @param action The action to execute for each element becomes known.
         */
        void whenElementKnown(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/impl/DirectorySnapshotterTest.groovy

            def rootDir = tmpDir.createDir("root")
            def knownDir = rootDir.file("known").createDir()
            def knownTextFile = rootDir.file("known/known.txt").createFile()
            def knownHtmlFile = rootDir.file("known/known.html").createFile()
            // root
            //   - known <-- knownDir
            //     - known.txt <-- knownTextFile
            //     - known.html <-- knownHtmlFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  8. src/runtime/compiler.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Compiler is the name of the compiler toolchain that built the
    // running binary. Known toolchains are:
    //
    //	gc      Also known as cmd/compile.
    //	gccgo   The gccgo front end, part of the GCC compiler suite.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 410 bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtTypeScope.kt

         *
         * This implementation is more optimal than the one with `nameFilter` and should be used when the candidate name set is known.
         */
        public fun getCallableSignatures(names: Collection<Name>): Sequence<KaCallableSignature<*>>
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinCompilerWarningsTest.kt

        @Test
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor::class)
        fun `experimental compiler warnings are not shown for known experimental features`() {
            withBuildScriptForKotlinCompile()
            withKotlinSourceFile()
    
            val result = build("compileKotlin")
    
            result.assertNotOutput(experimentalWarningHeader)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top