Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 105 of 105 for parity (4.2 sec)

  1. src/runtime/os_linux.go

    	allocmLock.lock()
    
    	// Disable preemption, preventing us from changing Ms, as we handle
    	// this M specially.
    	//
    	// N.B. STW and lock() above do this as well, this is added for extra
    	// clarity.
    	acquirem()
    
    	// N.B. allocmLock also prevents concurrent execution of this function,
    	// serializing use of perThreadSyscall, mp.needPerThreadSyscall, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	}
    	if namespace == "k8s.io" || strings.HasSuffix(namespace, ".k8s.io") {
    		return true
    	}
    	return false
    }
    
    func getLabelNamespace(key string) string {
    	if parts := strings.SplitN(key, "/", 2); len(parts) == 2 {
    		return parts[0]
    	}
    	return ""
    }
    
    // NewKubeletConfiguration will create a new KubeletConfiguration with default values
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    now works automatically for any source set that defines a module by containing a `module-info.java` file.
    Usually, this is the behavior you need.
    If this is causing issues in cases you manually configure the module path, or use a 3rd party plugin for it, you can still opt out of this by setting `modularity.inferModulePath` to `false` on the java extension or individual tasks.
    
    ==== Removal of `ValidateTaskProperties`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

     * Easier integration with other parts of the build, such as dependency configurations
     * More idiomatic build scripts
    
    It can be convenient to use Ant tasks that have no direct equivalents, such as `<checksum>` and `<chown>`.
    However, in the long term, it may be better to convert these to native Gradle task types that make use of standard Java APIs or third-party libraries.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    +
    .Declaring which projects are part of the build
    ====
    include::sample[dir="snippets/mavenMigration/multiModule/kotlin",files="settings.gradle.kts"]
    include::sample[dir="snippets/mavenMigration/multiModule/groovy",files="settings.gradle"]
    ====
    <1> Sets the name of the overall project
    <2> Configures two subprojects as part of this build
    +
    .Output of **`gradle projects`**
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top