Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 336 for emberi (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/register.go

    // SetGroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    func (obj *TypeMeta) SetGroupVersionKind(gvk schema.GroupVersionKind) {
    	obj.APIVersion, obj.Kind = gvk.ToAPIVersionAndKind()
    }
    
    // GroupVersionKind satisfies the ObjectKind interface for all objects that embed TypeMeta
    func (obj *TypeMeta) GroupVersionKind() schema.GroupVersionKind {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 13 15:08:46 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. .github/SECURITY.md

    Instructions for reporting a vulnerability can be found on the
    [Istio Security Vulnerabilities] page. The Istio Product Security Working Group receives
    vulnerability and security issue reports, and the company affiliation of the members of
    the group can be found at [Early Disclosure Membership].
    
    ## Security Bulletins
    
    Information about previous Istio vulnerabilities can be found on the
    [Security Bulletins] page.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 12 15:17:53 UTC 2023
    - 905 bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            interfaces = ['internal': internalInterface,
                          'incubating': incubatingInterface]
        }
    
        def "#member change should not be reported"() {
            expect:
            noViolation(rule)
    
            where:
            member << [Mock(JApiMethod), Mock(JApiField), Mock(JApiImplementedInterface), Mock(JApiConstructor)]
        }
    
        def "nothing should be reported if no changes"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  4. src/crypto/tls/defaults.go

    // cipherSuitesPreferenceOrder applies.
    //
    // defaultCipherSuitesTLS13 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/quic-go/quic-go
    //   - github.com/sagernet/quic-go
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname defaultCipherSuitesTLS13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/TimeTrackingProcessor.java

            return track(new Factory<Iterable<? extends Completion>>() {
                @Override
                public Iterable<? extends Completion> create() {
                    return TimeTrackingProcessor.super.getCompletions(element, annotation, member, userText);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

        public abstract ConfigurableFileCollection getJquery();
    
        /**
         * The release notes javascript to embed in the HTML
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public abstract RegularFileProperty getReleaseNotesJavascriptFile();
    
        /**
         * The release notes CSS to embed in the HTML
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 28 06:35:15 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue49602.go

    }
    
    type _ interface {
    	int | M          // ERROR "cannot use p.M in union (p.M contains methods)"
    	int | comparable // ERROR "cannot use comparable in union"
    	int | C          // ERROR "cannot use p.C in union (p.C embeds comparable)"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 466 bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/Generated.java

    import java.lang.annotation.ElementType;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Indicates that the annotated member code was generated.
     *
     * @since 6.5
     */
    @Retention(RetentionPolicy.CLASS)
    @Target(ElementType.TYPE)
    @Documented
    @SuppressWarnings("unused")
    public @interface Generated {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 1K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/nettest/nettest_windows.go

    	// From http://msdn.microsoft.com/en-us/library/windows/desktop/ms740548.aspx:
    	// Note: To use a socket of type SOCK_RAW requires administrative privileges.
    	// Users running Winsock applications that use raw sockets must be a member of
    	// the Administrators group on the local computer, otherwise raw socket calls
    	// will fail with an error code of WSAEACCES. On Windows Vista and later, access
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 989 bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/firUtils.kt

        if (this is FirConstructorSymbol) return if (!containingClass.isInner) containingClassId.asSingleFqName() else null
    
        // Java static members, enums, and object members can be imported
        val canBeImported = containingClass.origin is FirDeclarationOrigin.Java && isStatic ||
                containingClass.classKind == ClassKind.ENUM_CLASS && isStatic ||
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top