Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 177 for getlogin (0.13 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcBinding.java

            INTERFACES.put("lsarpc", lsarpc.getSyntax());
            INTERFACES.put("samr", samr.getSyntax());
            INTERFACES.put("netdfs", netdfs.getSyntax());
            INTERFACES.put("netlogon", "12345678-1234-abcd-ef00-01234567cffb:1.0");
            INTERFACES.put("wkssvc", "6BFFD098-A112-3610-9833-46C3F87E345A:1.0");
            INTERFACES.put("samr", "12345778-1234-ABCD-EF00-0123456789AC:1.0");
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalog.java

            return bundles.get(normalize(name));
        }
    
        public VersionModel getVersion(String name) {
            return versions.get(normalize(name));
        }
    
        public PluginModel getPlugin(String name) {
            return plugins.get(normalize(name));
        }
    
        public boolean hasDependency(String alias) {
            return libraries.containsKey(normalize(alias));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. cni/pkg/util/pluginutil.go

    	if !ok {
    		err = fmt.Errorf("error reading plugin list from CNI config")
    		return
    	}
    	return
    }
    
    // Given the raw plugin interface, return the plugin asserted as a map[string]interface{}
    func GetPlugin(rawPlugin any) (plugin map[string]any, err error) {
    	plugin, ok := rawPlugin.(map[string]any)
    	if !ok {
    		err = fmt.Errorf("error reading plugin from CNI config plugin list")
    		return
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/AbstractDaemonFixture.groovy

        void killDaemonOnly() {
            new ProcessFixture(context.pid).kill(false)
        }
    
        @Override
        String toString() {
            "Daemon with context $context"
        }
    
        @Override
        String getLog() {
            return daemonLog.text
        }
    
        @Override
        File getLogFile() {
            return daemonLog.file
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/internal/TomlWriter.java

            if (aliases.isEmpty()) {
                return;
            }
            writeTableHeader("plugins");
            for (String alias : aliases) {
                PluginModel data = model.getPlugin(alias);
                String id = data.getId();
                String versionRef = data.getVersionRef();
                ImmutableVersionConstraint version = data.getVersion();
                StringBuilder sb = new StringBuilder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/resources/org/gradle/internal/logging/LoggingIntegrationTest/logging/project1/build.gradle

    org.slf4j.Logger slf4jLogger = org.slf4j.LoggerFactory.getLogger('some-logger')
    slf4jLogger.info('An info log message logged using SLF4j')
    // END SNIPPET use-slf4j
    
    org.apache.commons.logging.Log jclLogger = org.apache.commons.logging.LogFactory.getLog('some-logger')
    jclLogger.info('An info log message logged using JCL')
    
    org.apache.log4j.Logger log4jLogger = org.apache.log4j.Logger.getLogger('some-logger')
    log4jLogger.info('An info log message logged using Log4j')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. maven-plugin-api/src/main/java/org/apache/maven/plugin/AbstractMojo.java

         * method directly whenever you need the logger, it is fast enough and needs no caching.
         *
         * @see org.apache.maven.plugin.Mojo#getLog()
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        @Override
        public Log getLog() {
            if (log == null) {
                log = new SystemStreamLog();
            }
    
            return log;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

         * <code>"info"</code>, <code>"warn"</code>, and <code>"error"</code>.
         * @deprecated Use SLF4J directly
         */
        @Deprecated
        Log getLog();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. cni/pkg/install/install.go

    			plugins, err := util.GetPlugins(cniConfigMap)
    			if err != nil {
    				return fmt.Errorf("%s: %w", in.cniConfigFilepath, err)
    			}
    			for i, rawPlugin := range plugins {
    				plugin, err := util.GetPlugin(rawPlugin)
    				if err != nil {
    					return fmt.Errorf("%s: %w", in.cniConfigFilepath, err)
    				}
    				if plugin["type"] == "istio-cni" {
    					cniConfigMap["plugins"] = append(plugins[:i], plugins[i+1:]...)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

    public interface DaemonFixture {
        /**
         * Returns the context information of this daemon.
         */
        DaemonContext getContext();
    
        /**
         * Returns the log for this daemon.
         */
        String getLog();
    
        /**
         * Returns the log file for this daemon.
         */
        File getLogFile();
    
        /**
         * Returns whether the log file contains a given String.
         *
    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