Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for opens (0.52 sec)

  1. src/os/removeall_at.go

    	if unlinkError == nil || IsNotExist(unlinkError) {
    		return nil
    	}
    
    	if recurseErr != nil {
    		return recurseErr
    	}
    	return &PathError{Op: "unlinkat", Path: base, Err: unlinkError}
    }
    
    // openDirAt opens a directory name relative to the directory referred to by
    // the file descriptor dirfd. If name is anything but a directory (this
    // includes a symlink to one), it should return an error. Other than that this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

            when:
            succeeds()
    
            then:
            agentWasApplied()
        }
    
        @Requires(
            value = UnitTestPreconditions.Jdk8OrEarlier,
            reason = "Java 9 and above needs --add-opens to make environment variable mutation work"
        )
        def "foreground daemon respects the feature flag"() {
            given:
            executer.tap {
                requireDaemon()
                requireIsolatedDaemons()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                    dependencies.add(runtimeOnlyConfigurationName, project.getLayout().files(pluginClasspathTask));
                }
            }
        }
    
        /**
         * Provides an {@code --add-opens} flag for {@code java.base/java.lang} if the JVM version
         * a given test task is running does not allow reflection of JDK internals by default.
         * Needed when using ProjectBuilder in tests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. src/cmd/go/alldocs.go

    //	vcs             controlling version control with GOVCS
    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    //	go build [-o output] [build flags] [packages]
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  5. src/internal/syscall/unix/nofollow_posix.go

    //
    //   - aix: O_NOFOLLOW not documented (https://www.ibm.com/docs/ssw_aix_73/o_bostechref/open.html), assuming ELOOP
    //   - android: see linux
    //   - darwin: https://github.com/apple/darwin-xnu/blob/main/bsd/man/man2/open.2
    //   - hurd: who knows if it works at all (https://www.gnu.org/software/hurd/open_issues/open_symlink.html)
    //   - illumos: https://illumos.org/man/2/open
    //   - ios: see darwin
    //   - linux: https://man7.org/linux/man-pages/man2/openat.2.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
  6. .github/dependabot.yml

      - package-ecosystem: "gomod"
        directory: "/"
        schedule:
          interval: "daily"
        # Limit number of open PRs to 0 so that we only get security updates
        # See https://docs.github.com/en/code-security/dependabot/dependabot-security-updates/configuring-dependabot-security-updates
        open-pull-requests-limit: 0
        labels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:41 UTC 2024
    - 480 bytes
    - Viewed (0)
  7. src/internal/syscall/unix/nofollow_bsd.go

    // license that can be found in the LICENSE file.
    
    //go:build dragonfly || freebsd
    
    package unix
    
    import "syscall"
    
    // References:
    // - https://man.freebsd.org/cgi/man.cgi?open(2)
    // - https://man.dragonflybsd.org/?command=open&section=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 384 bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilder.java

        private static final int BUFFER_SIZE = 8192;
    
        public interface StreamSupplier {
            InputStream open() throws IOException;
        }
    
        public interface ReaderSupplier {
            Reader open() throws IOException;
        }
    
        /**
         * @deprecated use {@link #build(ReaderSupplier)}
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

        private
        abstract class WritingState {
    
            open fun maybeStart(buildScopedSpoolFile: StateFile, projectScopedSpoolFile: StateFile, writeContextForOutputStream: (StateFile) -> DefaultWriteContext): WritingState =
                illegalStateFor("start")
    
            open fun pause(): WritingState =
                illegalStateFor("pause")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

                super.byNamePrefix(prefix).also { snapshot ->
                    onByNamePrefix(prefix, snapshot)
                }
        }
    }
    
    
    /**
     * Gives direct access to system resources.
     */
    open class DefaultEnvironment : Environment {
    
        override fun propertiesFile(propertiesFile: File): Map<String, String>? = when {
            propertiesFile.isFile -> GUtil.loadProperties(propertiesFile).uncheckedCast()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top