Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,069 for simply (0.15 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolver.java

         * The supplied request may also refer to a single concrete version rather than a version range.
         * In this case though, the result contains simply the (parsed) input version, regardless of the
         * repositories and their contents.
         *
         * @param session the session to use
         * @param artifactCoordinate t
         * @return the version range resolution result
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunicationSpec.groovy

        def comm = new DaemonStartupCommunication()
        def dummyFile = new File("C:\\foo;;\\daemon-123.log\n\r\n\u03b1")
        def uuid = UUID.randomUUID()
        def addresses = [InetAddress.getByName(null)]
    
        def "can simply communicate diagnostics"() {
            when:
            def message = message(123, "1234", uuid, 123, addresses, dummyFile)
            def startupInfo = comm.readDiagnostics(message)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/manager.go

    	Times() map[string]*metav1.Time
    }
    
    // Manager updates the managed fields and merges applied configurations.
    type Manager interface {
    	// Update is used when the object has already been merged (non-apply
    	// use-case), and simply updates the managed fields in the output
    	// object.
    	//  * `liveObj` is not mutated by this function
    	//  * `newObj` may be mutated by this function
    	// Returns the new object with managedFields removed, and the object's new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild/propagated-env-variables.kt

        "JDK_HOME",
        "JRE_HOME",
        "CommonProgramFiles",
        "CommonProgramFiles(x86)",
        "CommonProgramW6432",
        "ProgramData",
        "ProgramFiles",
        "ProgramFiles(x86)",
        // Simply putting PATH there isn't enough. Windows has case-insensitive env vars but something else fails if the Path variable is published as PATH for test tasks.
        OperatingSystem.current().pathVar,
        "PATHEXT",
    )
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 18 01:52:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/conditional-openapi.md

    Hiding the documentation just makes it more difficult to understand how to interact with your API, and could make it more difficult for you to debug it in production. It could be considered simply a form of <a href="https://en.wikipedia.org/wiki/Security_through_obscurity" class="external-link" target="_blank">Security through obscurity</a>.
    
    If you want to secure your API, there are several better things you can do, for example:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. releasenotes/notes/external-name.yaml

            an external name at another in-cluster Service (for example, `example.default.svc.cluster.local`), mTLS would not be used.
          
          `ExternalName` support has been revamped to fix these problems. `ExternalName`s are now simply treated as aliases.
          Wherever we would match `Host: <concrete service>` we additionally will match `Host: <external name service>`.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 27 03:08:29 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/NtlmAuthenticator.java

         * <tt>getRequestingException</tt> methods.
         * If this method returns <tt>null</tt> the <tt>SmbAuthException</tt> that triggered the authenticator check will
         * simply be rethrown. The default implementation returns <tt>null</tt>.
         */
        protected NtlmPasswordAuthenticator getNtlmPasswordAuthentication () {
            return null;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  8. internal/disk/directio_unsupported.go

    	return os.OpenFile(filePath, flag, perm)
    }
    
    // DisableDirectIO is a no-op
    func DisableDirectIO(f *os.File) error {
    	return nil
    }
    
    // AlignedBlock simply returns an unaligned buffer
    // for systems that do not support DirectIO.
    func AlignedBlock(blockSize int) []byte {
    	return make([]byte, blockSize)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Oct 18 18:08:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/volume/git_repo/git_repo.go

    type gitRepoVolumeUnmounter struct {
    	*gitRepoVolume
    }
    
    var _ volume.Unmounter = &gitRepoVolumeUnmounter{}
    
    // TearDown simply deletes everything in the directory.
    func (c *gitRepoVolumeUnmounter) TearDown() error {
    	return c.TearDownAt(c.GetPath())
    }
    
    // TearDownAt simply deletes everything in the directory.
    func (c *gitRepoVolumeUnmounter) TearDownAt(dir string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/RequiresExtension.groovy

     * <p>
     * If you need a new combination of {@link TestPrecondition} classes, go to {@code subprojects/internal-testing/src/main/resources/valid-precondition-combinations.csv} and simply add it.
     * <p>
     * See the <a href="https://github.com/gradle/gradle/tree/master/subprojects/predicate-tester">predicate-tester</a> project to learn about where we use the information.
     *
     * @see Requires
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top