Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,141 for get2s (0.04 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    )
    
    // Managed groups a fieldpath.ManagedFields together with the timestamps associated with each operation.
    type Managed interface {
    	// Fields gets the fieldpath.ManagedFields.
    	Fields() fieldpath.ManagedFields
    
    	// Times gets the timestamps associated with each operation.
    	Times() map[string]*metav1.Time
    }
    
    // Manager updates the managed fields and merges applied configurations.
    type Manager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/ToolchainsBuilderRequest.java

    @Experimental
    public interface ToolchainsBuilderRequest {
        @Nonnull
        Session getSession();
    
        /**
         * Gets the global Toolchains source.
         *
         * @return the global Toolchains source or {@code null} if none
         */
        @Nonnull
        Optional<Source> getGlobalToolchainsSource();
    
        /**
         * Gets the user Toolchains source.
         *
         * @return the user Toolchains source or {@code null} if none
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. test/fixedbugs/bug440_32.go

    // run
    
    // Test for 8g register move bug.  The optimizer gets confused
    // about 16- vs 32-bit moves during splitContractIndex.
    
    // Issue 3910.
    
    package main
    
    func main() {
    	const c = 0x12345678
    	index, n, offset := splitContractIndex(c)
    	if index != int((c&0xffff)>>5) || n != int(c&(1<<5-1)) || offset != (c>>16)&(1<<14-1) {
    		println("BUG", index, n, offset)
    	}
    }
    
    func splitContractIndex(ce uint32) (index, n, offset int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 514 bytes
    - Viewed (0)
  4. releasenotes/notes/36044.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 22 19:14:54 UTC 2021
    - 168 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/eventspy/EventSpy.java

     * under the License.
     */
    package org.apache.maven.eventspy;
    
    import java.util.Map;
    
    /**
     * A core extension to monitor Maven's execution. Typically, such an extension gets loaded into Maven by specifying the
     * property {@code maven.ext.class.path} on the command line. As soon as dependency injection is set up, Maven
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

        public fun KaCallableSymbol.isVisibleInClass(classSymbol: KaClassOrObjectSymbol): Boolean =
            withValidityAssertion { analysisSession.overrideInfoProvider.isVisible(this, classSymbol) }
    
        /**
         * Gets the [ImplementationStatus] of the [this] member symbol in the given [parentClassSymbol]. Or null if this symbol is not a
         * member.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Transient.java

     */
    
    package org.gradle.internal.serialization;
    
    import javax.annotation.Nullable;
    
    /**
     * A value that gets discarded during serialization.
     */
    public abstract class Transient<T> implements java.io.Serializable {
    
        /**
         * A mutable variable that gets discarded during serialization.
         */
        public static abstract class Var<T> extends Transient<T> {
            public abstract void set(T value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/tasks/DeleteTest.groovy

        }
    
        def "did work is true when something gets deleted"() {
            given:
            def file = temporaryFolder.createFile("someFile")
    
            when:
            delete.delete(file)
            execute(delete)
    
            then:
            delete.getDidWork()
            !file.exists()
        }
    
        def "did work is false when nothing gets deleted"() {
            when:
            delete.delete("does-not-exist")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/internal/JavaPluginHelper.java

     * and thus avoids adding these methods to the public API.
     */
    public class JavaPluginHelper {
    
        private JavaPluginHelper() {
            // Private to prevent instantiation.
        }
    
        /**
         * Gets the main Java component. This method assumes the Java plugin is applied.
         *
         * @throws GradleException If the {@code java} component does not exist.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 13:16:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         */
        @Input
        boolean isEnabled();
    
        /**
         * Sets element for the rule.
         *
         * @param element Element
         */
        void setElement(String element);
    
        /**
         * Gets the element for the rule as defined by
         * <a href="http://www.eclemma.org/jacoco/trunk/doc/api/org/jacoco/core/analysis/ICoverageNode.ElementType.html">org.jacoco.core.analysis.ICoverageNode.ElementType</a>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top