Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,560 for usedBy (0.12 sec)

  1. src/crypto/tls/handshake_client_tls13.go

    		return errors.New("tls: certificate used with invalid signature algorithm")
    	}
    	sigType, sigHash, err := typeAndHashFromSignatureScheme(certVerify.signatureAlgorithm)
    	if err != nil {
    		return c.sendAlert(alertInternalError)
    	}
    	if sigType == signaturePKCS1v15 || sigHash == crypto.SHA1 {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: certificate used with invalid signature algorithm")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                contextualLabel == "Type \'MyTask\' property \'options.nestedThing\' is annotated with invalid property type @$ann.simpleName"
                details == "The '@${ann.simpleName}' annotation cannot be used in this context"
                solutions == [
                    'Remove the property',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinMessageBusProvider.kt

     * [KotlinMessageBusProvider] allows Analysis API implementations to provide a custom [MessageBus]. When subscribing to or publishing to
     * Analysis API topics ([KotlinModificationTopics]), the message bus provided by [getMessageBus] should be used, not the [Project]'s message bus.
     */
    public interface KotlinMessageBusProvider : KotlinPlatformComponent {
        public fun getMessageBus(): MessageBus
    
        public companion object {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/NotUsedByScanPlugin.java

     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.METHOD, ElementType.TYPE})
    public @interface NotUsedByScanPlugin {
    
        /**
         * Any clarifying comments about why it isn't used by the build scan plugin or how it is used instead.
         */
        String value() default "";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue21317.go

    	out, err := cmd.CombinedOutput()
    	if err == nil {
    		log.Fatalf("expected cmd/compile to fail")
    	}
    	wantErrs := []string{
    		"7:9: declared and not used: n",
    		"7:12: declared and not used: err",
    	}
    	outStr := string(out)
    	for _, want := range wantErrs {
    		if !strings.Contains(outStr, want) {
    			log.Fatalf("failed to match %q\noutput: %q", want, outStr)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

        void setFrom(Object... paths);
    
        /**
         * Specifies the value to use as the convention (default value) to be used when resolving this file collection,
         * if no source paths are explicitly defined.
         *
         * If, at the time this method is invoked, the set of source paths for this collection is empty, the convention will be used
         * to resolve this file collection.
         *
         * @param paths The paths.
         * @return this collection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/go/types/stmt.go

    				if v.used {
    					used = true
    				}
    				v.used = true // avoid usage error when checking entire function
    			}
    			if !used {
    				check.softErrorf(lhs, UnusedVar, "%s declared and not used", lhs.Name)
    			}
    		}
    
    	case *ast.SelectStmt:
    		inner |= breakOk
    
    		check.multipleDefaults(s.Body.List)
    
    		for _, s := range s.Body.List {
    			clause, _ := s.(*ast.CommClause)
    			if clause == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/values.yaml

        # JWKS URIs.
        jwksResolverExtraRootCA: ""
    
        # This is used to set the source of configuration for
        # the associated address in configSource, if nothing is specified
        # the default MCP is assumed.
        configSource:
          subscribedResources: []
    
        # The following is used to limit how long a sidecar can be connected
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. cmd/veeam-sos-api.go

    // multiple buckets can be used together. The placement logic for additional backup files is based on available space. Other values
    // will augment the Veeam user interface and statistics, including free space warnings.
    type capacityInfo struct {
    	XMLName   xml.Name `xml:"CapacityInfo" json:"-"`
    	Capacity  int64    `xml:"Capacity"`
    	Available int64    `xml:"Available"`
    	Used      int64    `xml:"Used"`
    }
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 20 18:54:52 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_executor.go

    	// Marks the specified volume as attached to the specified node.  If the
    	// volume name is supplied, that volume name will be used.  If not, the
    	// volume name is computed using the result from querying the plugin.
    	//
    	// TODO: in the future, we should be able to remove the volumeName
    	// argument to this method -- since it is used only for attachable
    	// volumes.  See issue 29695.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top