Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 757 for ExtensionB (0.13 sec)

  1. src/crypto/x509/x509.go

    	KeyUsage            KeyUsage
    
    	// Extensions contains raw X.509 extensions. When parsing certificates,
    	// this can be used to extract non-critical extensions that are not
    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    	// ExtraExtensions contains extensions to be copied, raw, into any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/extensions.kt

    Bo Zhang <******@****.***> 1716961791 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (1)
  3. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                    extensions.add(createExtension(extension, artifacts));
                }
            }
    
            return Collections.unmodifiableList(extensions);
        }
    
        private CoreExtensionEntry createExtension(CoreExtension extension, List<Artifact> artifacts) throws Exception {
            String realmId = "coreExtension>" + extension.getGroupId() + ":" + extension.getArtifactId() + ":"
                    + extension.getVersion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/extension_config_builder.go

    	envoyFilterPatches := push.EnvoyFilters(proxy)
    	extensions := envoyfilter.InsertedExtensionConfigurations(envoyFilterPatches, extensionConfigNames)
    	wasmPlugins := push.WasmPluginsByName(proxy, parseExtensionName(extensionConfigNames))
    	extensions = append(extensions, extension.InsertedExtensionConfigurations(wasmPlugins, extensionConfigNames, pullSecrets)...)
    	return extensions
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/scripts/DefaultScriptFileResolver.java

            this.scriptFileResolvedListener = null;
        }
    
        @Override
        public File resolveScriptFile(File dir, String basename) {
            for (String extension : EXTENSIONS) {
                File candidate = new File(dir, basename + extension);
                if (isCandidateFile(candidate)) {
                    return candidate;
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu.go

    	HasAVX512PF         bool // Advanced vector extension 512 Prefetch Instructions
    	HasAVX512VL         bool // Advanced vector extension 512 Vector Length Extensions
    	HasAVX512BW         bool // Advanced vector extension 512 Byte and Word Instructions
    	HasAVX512DQ         bool // Advanced vector extension 512 Doubleword and Quadword Instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_messages.go

    		// ClientHello is optionally followed by extension data
    		return true
    	}
    
    	var extensions cryptobyte.String
    	if !s.ReadUint16LengthPrefixed(&extensions) || !s.Empty() {
    		return false
    	}
    
    	seenExts := make(map[uint16]bool)
    	for !extensions.Empty() {
    		var extension uint16
    		var extData cryptobyte.String
    		if !extensions.ReadUint16(&extension) ||
    			!extensions.ReadUint16LengthPrefixed(&extData) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/x509/parser.go

    			return nil, errors.New("x509: malformed extensions")
    		}
    		for !extensions.Empty() {
    			var extension cryptobyte.String
    			if !extensions.ReadASN1(&extension, cryptobyte_asn1.SEQUENCE) {
    				return nil, errors.New("x509: malformed extension")
    			}
    			ext, err := parseExtension(extension)
    			if err != nil {
    				return nil, err
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

                    }
                }
                // Configure the non-existent extension for error handling
                ?: extensions.configure(type, configuration)
        }
    
    
    /**
     * Returns the [project extension][org.gradle.api.plugins.ExtensionAware] of the specified type.
     *
     * If no extension is found, returns a project convention if available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

        @Issue("GRADLE-3460")
        def "extension configuration method is preferred over property with closure value"() {
            given:
            buildFile """
    class ContactExtension {
        String prop
    }
    
    class ContactPlugin implements Plugin<Project> {
        public void apply(Project project) {
            ContactExtension extension = project.extensions.create('contacts', ContactExtension)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top