Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for nPix (1.44 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/troubleshooting.adoc

    === Permission denied
    
    If you get "permission denied", that means that Gradle likely exists in the correct place, but it is not executable.
    You can fix this using `chmod +x path/to/executable` on *nix-based systems.
    
    === Other installation failures
    
    If `gradle—- version` works, but all of your builds fail with the same error, it is possible that one of your Gradle build configuration scripts is broken.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:22:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/cpp_unit_test_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/test/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\test{backslash}__$variant__\baseName.exe")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/native/cpp_application_plugin.adoc

    link:{groovyDslPath}/org.gradle.nativeplatform.tasks.LinkExecutable.html#org.gradle.nativeplatform.tasks.LinkExecutable:linkedFile[linkedFile]:: `layout.buildDirectory.dir("exe/main/__$variant__/baseName")` (*nix) or `layout.buildDirectory.dir("exe\main{backslash}__$variant__\baseName.exe")` (Windows)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import java.net.URISyntaxException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Properties;
    
    /**
     * <p>Generates scripts (for *nix and windows) which allow you to build your project with Gradle, without having to
     * install Gradle.
     *
     * <p>When a user executes a wrapper script the first time, the script downloads and installs the appropriate Gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. pkg/util/iptables/iptables.go

    }
    
    // Executes the rule check without using the "-C" flag, instead parsing iptables-save.
    // Present for compatibility with <1.4.11 versions of iptables.  This is full
    // of hack and half-measures.  We should nix this ASAP.
    func (runner *runner) checkRuleWithoutCheck(table Table, chain Chain, args ...string) (bool, error) {
    	iptablesSaveCmd := iptablesSaveCommand(runner.protocol)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    	var err error
    
    	if useHostNetwork {
    		// if Pod is using host network, read hosts file from the node's filesystem.
    		// `etcHostsPath` references the location of the hosts file on the node.
    		// `/etc/hosts` for *nix systems.
    		hostsFileContent, err = nodeHostsFileContent(etcHostsPath, hostAliases)
    		if err != nil {
    			return err
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top