Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for applyTo (0.13 sec)

  1. pkg/scheduler/framework/runtime/framework.go

    			return
    		}
    	}, metrics.Score)
    	if err := errCh.ReceiveError(); err != nil {
    		return nil, framework.AsStatus(fmt.Errorf("running Normalize on Score plugins: %w", err))
    	}
    
    	// Apply score weight for each ScorePlugin in parallel,
    	// and then, build allNodePluginScores.
    	f.Parallelizer().Until(ctx, len(nodes), func(index int) {
    		nodePluginScores := framework.NodePluginScores{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    		goto Error
    	}
    
    	// check if comparison is defined for operands
    	code = UndefinedOp
    	switch op {
    	case syntax.Eql, syntax.Neq:
    		// spec: "The equality operators == and != apply to operands that are comparable."
    		switch {
    		case x.isNil() || y.isNil():
    			// Comparison against nil requires that the other operand type has nil.
    			typ := x.typ
    			if x.isNil() {
    				typ = y.typ
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class FileSystemParamProvider : SimpleProvider() {
      override fun arguments() =
        listOf(
          FakeFileSystem().apply { emulateUnix() } to false,
          FileSystem.SYSTEM to TestUtil.windows,
          FakeFileSystem().apply { emulateWindows() } to true,
        )
    }
    
    @Timeout(60)
    @Tag("Slow")
    class DiskLruCacheTest {
      private lateinit var filesystem: FaultyFileSystem
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		// Don't demangle the parameters.
    
    		// Strip CV-qualifiers, as they apply to the 'this'
    		// parameter, and are not output by the standard
    		// demangler without parameters.
    		if mwq, ok := a.(*MethodWithQualifiers); ok {
    			a = mwq.Method
    		}
    
    		// If this is a local name, there may be CV-qualifiers
    		// on the name that really apply to the top level, and
    		// therefore must be discarded when discarding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	// or finds conflicting comments in multiple source files.
    	// See golang.org/s/go14customimport for more information.
    	ImportComment
    
    	// By default, Import searches vendor directories
    	// that apply in the given source directory before searching
    	// the GOROOT and GOPATH roots.
    	// If an Import finds and returns a package using a vendor
    	// directory, the resulting ImportPath is the complete path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Required.
    	MatchConstraints *MatchResources `json:"matchConstraints,omitempty" protobuf:"bytes,2,rep,name=matchConstraints"`
    
    	// Validations contain CEL expressions which is used to apply the validation.
    	// Validations and AuditAnnotations may not both be empty; a minimum of one Validations or AuditAnnotations is
    	// required.
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * uniquely identifies it in the hierarchy.</p>
     *
     * <h3>Plugins</h3>
     *
     * <p>
     * Plugins can be used to modularise and reuse project configuration.
     * Plugins can be applied using the {@link PluginAware#apply(java.util.Map)} method, or by using the {@link org.gradle.plugin.use.PluginDependenciesSpec} plugins script block.
     * </p>
     *
     * <a id="properties"></a> <h3>Dynamic Project Properties</h3>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    Bazaar, Fossil, and Subversion have primarily been used in trusted,
    authenticated environments and are not as well scrutinized as attack surfaces.
    
    The version control command restrictions only apply when using direct version
    control access to download code. When downloading modules from a proxy,
    'go get' uses the proxy protocol instead, which is always permitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    								if gw != nil {
    									recordGateways[gwID] = true
    									if gw.Spec.Selector == nil {
    										fmt.Fprintf(writer,
    											"Ingress Gateway %s/%s be applyed all workloads",
    											gns, gatewayName)
    										continue
    									}
    
    									var matchIngressInfos []*ingressInfo
    									for i, ingress := range foundIngresses {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                            }
                        }
                        return s;
                    });
                }
    
                @Override
                public Profile apply(Profile p) {
                    return Profile.newBuilder(p)
                            .activation(transformActivation(p.getActivation()))
                            .build();
                }
    
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top