Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 147 for forced (0.69 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	// showing no data if the specified function is "uninteresting" as far as the
    	// trimming is concerned.
    	trim := cfg.Trim
    
    	switch cmd {
    	case "disasm":
    		trim = false
    		cfg.Granularity = "addresses"
    		// Force the 'noinlines' mode so that source locations for a given address
    		// collapse and there is only one for the given address. Without this
    		// cumulative metrics would be double-counted when annotating the assembly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedBytes.java

                && (BYTE_ARRAY_BASE_OFFSET % 8) == 0
                // sanity check - this should never fail
                && theUnsafe.arrayIndexScale(byte[].class) == 1)) {
              throw new Error(); // force fallback to PureJavaComparator
            }
          }
    
          /**
           * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package. Replace with a simple
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	DryRun bool `json:"dryRun,omitempty"`
    
    	// Force flag instructs kubeadm to reset the node without prompting for confirmation.
    	// +optional
    	Force bool `json:"force,omitempty"`
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored during the reset process, e.g. 'IsPrivilegedUser,Swap'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

        private val cacheFingerprintController: ConfigurationCacheFingerprintController,
        private val encryptionService: EncryptionService,
        private val resolveStateFactory: LocalComponentGraphResolveStateFactory,
        /**
         * Force the [FileSystemAccess] service to be initialized as it initializes important static state.
         */
        @Suppress("unused")
        private val fileSystemAccess: FileSystemAccess,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. src/go/build/read.go

    			pos := r.pos
    			for {
    				c := r.readByteNoBuf()
    				if c == '\n' || r.err != nil || r.eof {
    					break
    				}
    				line = append(line, c)
    			}
    			// Add args if line is well-formed.
    			// Ignore badly-formed lines - the compiler will report them when it finds them,
    			// and we can pretend they are not there to help go list succeed with what it knows.
    			embs, err := parseGoEmbed(string(line), pos)
    			if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. apache-maven/pom.xml

        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-file</artifactId>
        </dependency>
        <!-- HTTP/1.1, lowest priority, Java8+ (still must as some ITs force it) -->
        <dependency>
          <groupId>org.apache.maven.resolver</groupId>
          <artifactId>maven-resolver-transport-wagon</artifactId>
        </dependency>
        <!-- HTTP/1.1, medium priority, Java8+ -->
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

                classpath = classpath.plus(moduleRegistry.getModule("gradle-core").getAllRequiredModulesClasspath());
                // If a real Gradle installation is used, the following modules will be force-loaded anyway by gradle-core through the getClassPath("GRADLE_EXTENSIONS") call in the DefaultClassLoaderRegistry constructor
                // See also: DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/types.go

    	CRISocket string
    
    	// DryRun tells if the dry run mode is enabled, don't apply any change if it is and just output what would be done.
    	DryRun bool
    
    	// Force flag instructs kubeadm to reset the node without prompting for confirmation.
    	Force bool
    
    	// IgnorePreflightErrors provides a slice of pre-flight errors to be ignored during the reset process, e.g. 'IsPrivilegedUser,Swap'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                apply plugin: 'java'
    
                dependencies {
                   implementation files('foo.jar')
                }
            '''
            file('foo.jar') << 'this is clearly not a well formed jar file'
            file('src/main/java/Hello.java') << 'public class Hello {}'
    
            when:
            executer.withStackTraceChecksDisabled()
            run 'compileJava'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                if (useStrongReference) {
                    // Keep a hard reference to the state for re-evaluation on mutation
                    // and to force the value to be reused for resolution of other configurations
                    reference = null;
                    cachedValue = state;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top