Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 489 for mechanisms (0.17 sec)

  1. src/main/java/jcifs/smb/NtlmContext.java

        @Override
        public boolean isSupported ( ASN1ObjectIdentifier mechanism ) {
            return NTLMSSP_OID.equals(mechanism);
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.smb.SSPContext#isPreferredMech(org.bouncycastle.asn1.ASN1ObjectIdentifier)
         */
        @Override
        public boolean isPreferredMech ( ASN1ObjectIdentifier mechanism ) {
            return this.auth.isPreferredMech(mechanism);
        }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencySubstitutions.java

         *
         * @param selector the original selector
         * @since 6.6
         */
        ComponentSelector platform(ComponentSelector selector);
    
        /**
         * DSL-friendly mechanism to construct a dependency substitution for dependencies matching the provided selector.
         * <p>
         * Examples:
         * <pre class='autoTested'>
         * configurations { main }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 24 20:12:31 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  3. test/fixedbugs/issue13268.go

    // license that can be found in the LICENSE file.
    
    // Test error message when EOF is encountered in the
    // middle of a BOM.
    //
    // Since the error requires an EOF, we cannot use the
    // errorcheckoutput mechanism.
    
    package main
    
    import (
    	"io/ioutil"
    	"log"
    	"os"
    	"os/exec"
    	"strings"
    )
    
    func main() {
    	// create source
    	f, err := ioutil.TempFile("", "issue13268-")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 984 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/project/ProjectConfigureAction.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Can be implemented by plugins to auto-configure each project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for each project that is to be configured, before the project has been configured. Actions are executed
     * in an arbitrary order.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/initialization/buildsrc/BuildSrcProjectConfigurationAction.java

    import org.gradle.api.internal.project.ProjectInternal;
    
    /**
     * Can be implemented by plugins to auto-configure the buildSrc root project.
     *
     * <p>Implementations are discovered using the JAR service locator mechanism (see {@link org.gradle.internal.service.ServiceLocator}).
     * Each action is invoked for the buildSrc project that is to be configured, before the project has been configured. Actions are executed
     * in an arbitrary order.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 24 17:10:43 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/util.go

    // For instance, I can make a transformation from `object => object.name` to only trigger events for changes to the name;
    // the output will be compared (using standard equality checking), and only changes will trigger the handler.
    // Note this is in addition to the normal event mechanics, so this can only filter things further.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             *
             * This value may also be null for an UP_TO_DATE outcome where the work executed, but then decided it was UP_TO_DATE.
             * That is, it was not UP_TO_DATE due to Gradle's core input/output incremental build mechanism.
             * This is not necessarily ideal behaviour, but it is the current.
             */
            @Nullable
            String getOriginBuildInvocationId();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/time/sys_unix.go

    //go:build unix || (js && wasm) || wasip1
    
    package time
    
    import (
    	"errors"
    	"runtime"
    	"syscall"
    )
    
    // for testing: whatever interrupts a sleep
    func interrupt() {
    	// There is no mechanism in wasi to interrupt the call to poll_oneoff
    	// used to implement runtime.usleep so this function does nothing, which
    	// somewhat defeats the purpose of TestSleep but we are still better off
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

            }
    
            return new String(out, 0, j);
        }
    
    
        /**
         * @param mechanism
         * @return whether the given mechanism is the preferred one for this credential
         */
        public boolean isPreferredMech ( ASN1ObjectIdentifier mechanism ) {
            return NtlmContext.NTLMSSP_OID.equals(mechanism);
        }
    
    
        /**
         * Computes the 24 byte ANSI password hash given the 8 byte server challenge.
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/README.md

    - The Legalize pass converts TensorFlow operations to TensorFlow Lite
    ones. The operations that cannot be mapped to TensorFlow Lite dialect
    are left as TensorFlow operations. Unsupported op handling follows the
    proposed TFLite mechanism.
    - Optimizations are performed in both the TF & TFLite dialect; aiming for small
    size and high performance (among the core value proposition of
    TensorFlow Lite models).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 29 11:30:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top