Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 170 for applyTo (0.21 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. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    var _ rest.TableConvertor = &Store{}
    var _ GenericStore = &Store{}
    
    var _ rest.SingularNameProvider = &Store{}
    
    const (
    	OptimisticLockErrorMsg        = "the object has been modified; please apply your changes to the latest version and try again"
    	resourceCountPollPeriodJitter = 1.2
    )
    
    // NamespaceKeyRootFunc is the default function for constructing storage paths
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/mgcpacer.go

    		// Set it to heapMarked, the lowest possible goal.
    		return c.heapMarked
    	}
    
    	// Compute the goal.
    	goal := memoryLimit - (nonHeapMemory + overage)
    
    	// Apply some headroom to the goal to account for pacing inaccuracies and to reduce
    	// the impact of scavenging at allocation time in response to a high allocation rate
    	// when GOGC=off. See issue #57069. Also, be careful about small limits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1beta1/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 Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            """
    
            file('lib/build.gradle') << """
                plugins {
                    id 'java-library'
                }
            """
    
            buildFile << """
                apply plugin: 'java-library'
    
                repositories {
                    maven { url = "${mavenRepo.uri}" }
                }
    
                dependencies {
                    api platform('org:platform:1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    		} else {
    			ldr.Errorf(s, "unexpected relocation for dynamic symbol %s", ldr.SymName(targ))
    		}
    		rela.AddAddrPlus(target.Arch, targ, int64(r.Add()))
    
    		// Not mark r done here. So we still apply it statically,
    		// so in the file content we'll also have the right offset
    		// to the relocation target. So it can be examined statically
    		// (e.g. go version).
    		return true
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    configurations.classpath.attributes.attribute(artifactType, 'green')
                }
            """
            if (inExternalScript) {
                consumerBuildFile << """
                    apply from: 'my-script.gradle'
                """
            }
            consumerBuildFile << """
                task hello {
                    doLast {
                        println "Hello"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
Back to top