Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 244 for based (0.07 sec)

  1. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    }
    
    // Error sends an Error event.
    func (f *FakeWatcher) Error(errValue runtime.Object) {
    	f.result <- Event{Error, errValue}
    }
    
    // Action sends an event of the requested type, for table-based testing.
    func (f *FakeWatcher) Action(action EventType, obj runtime.Object) {
    	f.result <- Event{action, obj}
    }
    
    // RaceFreeFakeWatcher lets you test anything that consumes a watch.Interface; threadsafe.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    import org.jetbrains.kotlin.fir.symbols.impl.FirRegularClassSymbol
    
    /**
     * [KaFirNamedClassOrObjectSymbolBase] provides shared equality and hash code implementations for FIR-based named class or object symbols so
     * that symbols of different kinds can be compared and remain interchangeable.
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/math/rand/v2/chacha8.go

    // license that can be found in the LICENSE file.
    
    package rand
    
    import (
    	"errors"
    	"internal/byteorder"
    	"internal/chacha8rand"
    )
    
    // A ChaCha8 is a ChaCha8-based cryptographically strong
    // random number generator.
    type ChaCha8 struct {
    	state chacha8rand.State
    
    	// The last readLen bytes of readBuf are still to be consumed by Read.
    	readBuf [8]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. maven-slf4j-provider/pom.xml

        <version>4.0.0-beta-4-SNAPSHOT</version>
      </parent>
    
      <artifactId>maven-slf4j-provider</artifactId>
    
      <name>Maven SLF4J Simple Provider</name>
      <description>Maven SLF4J provider based on SLF4J's simple provider, extended to support Maven styled colors
        for levels and stacktrace rendering.</description>
    
      <dependencies>
        <dependency>
          <groupId>org.slf4j</groupId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyDependencyMetadata.java

    import java.util.List;
    
    /**
     * Represents a dependency declared in an Ivy descriptor file.
     * <p>
     * This dependency metadata is bound to a source configuration, since Ivy resolves
     * target components differently based on the configuration that they are sourced from.
     * </p>
     */
    public class IvyDependencyMetadata extends ExternalModuleDependencyMetadata {
    
        private final ConfigurationMetadata configuration;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. src/cmd/asm/main.go

    	}
    	defer buf.Close()
    
    	if !*flags.SymABIs {
    		buf.WriteString(objabi.HeaderString())
    		fmt.Fprintf(buf, "!\n")
    	}
    
    	// Set macros for GOEXPERIMENTs so we can easily switch
    	// runtime assembly code based on them.
    	if objabi.LookupPkgSpecial(ctxt.Pkgpath).AllowAsmABI {
    		for _, exp := range buildcfg.Experiment.Enabled() {
    			flags.D = append(flags.D, "GOEXPERIMENT_"+exp)
    		}
    	}
    
    	var ok, diag bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/runtime/pprof/protomem.go

    // requests in a program. We estimate the unsampled value by dividing
    // each collected sample by its probability of appearing in the
    // profile. heap profiles rely on a poisson process to determine
    // which samples to collect, based on the desired average collection
    // rate R. The probability of a sample of size S to appear in that
    // profile is 1-exp(-S/R).
    func scaleHeapSample(count, size, rate int64) (int64, int64) {
    	if count == 0 || size == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/AbstractBroadcastDispatch.java

            }
        }
    
        /**
         * Dispatch an invocation to the given dispatchers.
         * <p>
         * This method will try to dispatch the invocation in an efficient way based on the number of dispatchers.
         * </p>
         */
        protected void dispatch(MethodInvocation invocation, List<? extends Dispatch<MethodInvocation>> dispatchers) {
            switch (dispatchers.size()) {
                case 0:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. test/alias2.go

    func (A0) m2()  {}
    
    // Type aliases and the original type name can be used interchangeably.
    var _ A0 = T0{}
    var _ T0 = A0{}
    
    // But aliases and original types cannot be used with new types based on them.
    var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration"
    var _ N0 = A0{} // ERROR "cannot use A0{} \(value of type A0\) as N0 value in variable declaration"
    
    var _ A5 = Value{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/DependencyClassPathProvider.java

                gradleApi = initGradleApi();
            }
            return gradleApi;
        }
    
        private ClassPath initGradleApi() {
            // This gradleApi() method creates a Gradle API classpath based on real jars for embedded test running.
            // Currently, this leaks additional dependencies that may cause unexpected issues.
            // This method is involved in generating the gradleApi() Jar which is used in a real Gradle run.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top