Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for internally (0.81 sec)

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

        }
    
    
        /**
         * Create an <tt>NtlmPasswordAuthentication</tt> object from the userinfo
         * component of an SMB URL like "<tt>domain;user:pass</tt>". This constructor
         * is used internally be jCIFS when parsing SMB URLs.
         * 
         * @param tc
         * @param userInfo
         */
        public NtlmPasswordAuthentication ( CIFSContext tc, String userInfo ) {
            super(
                userInfo,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	KubeScheduler = "kube-scheduler"
    	// KubeProxy defines variable used internally when referring to kube-proxy component
    	KubeProxy = "kube-proxy"
    	// CoreDNS defines variable used internally when referring to the CoreDNS component
    	CoreDNS = "CoreDNS"
    	// Kubelet defines variable used internally when referring to the Kubelet
    	Kubelet = "kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/encoder.md

    !!! note
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

         * returned.
         */
        Set<ExcludeRule> getRules();
    
        /**
         * Adds an exclude rule to this container. The ExcludeRule object gets created internally based on the map values
         * passed to this method. The possible keys for the map are:
         *
         * <ul>
         * <li><code>group</code> - The exact name of the organization or group that should be excluded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/cgo_undef.txt

    # imported packages).
    #
    # The _cgo_import.go file is only needed for internal linking.
    # When generating _cgo_import.go for package c fails, an ordinary
    # external link should still work. But an internal link is expected
    # to fail, because the failure to create _cgo_import.go should cause
    # the linker to report an inability to internally link.
    
    [short] skip
    [!cgo] skip
    [!exec:ar] skip
    
    cc -c -o a/b.syso b/b.c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 20:56:07 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmLibraryProjectInitDescriptor.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.model.Description;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    
    import java.util.List;
    
    import static com.google.common.collect.Lists.newArrayList;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/syscall/pwd_plan9.go

    )
    
    var (
    	wdmu  sync.Mutex // guards following
    	wdSet bool
    	wdStr string
    )
    
    // Ensure current working directory seen by this goroutine matches
    // the most recent [Chdir] called in any goroutine. It's called internally
    // before executing any syscall which uses a relative pathname. Must
    // be called with the goroutine locked to the OS thread, to prevent
    // rescheduling on a different thread (potentially with a different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginCollection.java

     * limitations under the License.
     */
    package org.gradle.api.internal.plugins;
    
    import groovy.lang.Closure;
    import org.gradle.api.Action;
    import org.gradle.api.Plugin;
    import org.gradle.api.internal.CollectionCallbackActionDecorator;
    import org.gradle.api.internal.DefaultDomainObjectSet;
    import org.gradle.api.internal.collections.CollectionFilter;
    import org.gradle.api.plugins.PluginCollection;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 20 10:28:05 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  9. tensorflow/c/eager/immediate_execution_distributed_manager.h

                                                int keep_alive_secs) = 0;
    
      // Set up a multi-client distributed execution environment. Must be called
      // on all tasks in the cluster. This call internally coordinates with other
      // tasks to initialize the eager context and TF server for multi-client
      // execution.
      virtual Status EnableCollectiveOps(const ServerDef& server_def) = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

            auth = a;
        }
    
        protected final String getRequestingURL() {
            return url;
        }
        protected final SmbAuthException getRequestingException() {
            return sae;
        }
    
    /**
    Used internally by jCIFS when an <tt>SmbAuthException</tt> is trapped to retrieve new user credentials.
     */
    
        public static NtlmPasswordAuthentication
                    requestNtlmPasswordAuthentication( String url, SmbAuthException sae ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 2.8K bytes
    - Viewed (0)
Back to top