Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 158 for getlogin (0.2 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            assert actual == version
        }
    
        void hasPlugin(String alias, String id, String version) {
            assert model.hasPlugin(alias)
            def plugin = model.getPlugin(alias)
            assert plugin != null : "Expected a plugin with alias '$alias' but it wasn't found"
            assert plugin.id == id
            assert plugin.version.requiredVersion == version
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/toolchain/DefaultToolchainTest.java

        }
    
        @Test
        void testGetLogger() {
            ToolchainModel model = new ToolchainModel();
            DefaultToolchain toolchain = newDefaultToolchain(model);
            assertEquals(logger, toolchain.getLog());
        }
    
        @Test
        void testMissingRequirementProperty() {
            ToolchainModel model = new ToolchainModel();
            model.setType("TYPE");
            DefaultToolchain toolchain = newDefaultToolchain(model);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/lifecycle/MavenExecutionPlan.java

                final MojoExecution mojoExecution = executionPlanItem.getMojoExecution();
                if (!mojoExecution.getMojoDescriptor().isThreadSafe()) {
                    plugins.add(mojoExecution.getPlugin());
                }
            }
            return plugins;
        }
    
        /**
         * Get set of mojos used but not marked @threadSafe
         *
         * @return the set of mojo descriptors
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/PluginApplicationTracker.java

                this.plugin = plugin;
            }
    
            public long getApplicationId() {
                return applicationId;
            }
    
            public InternalPluginIdentifier getPlugin() {
                return plugin;
            }
    
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IdeaModelBuilder.java

            }
            out.setChildren(new LinkedList<>(ideaModules));
            return out;
        }
    
        private IdeaPlugin ideaPluginFor(Project project) {
            return project.getPlugins().getPlugin(IdeaPlugin.class);
        }
    
        private static void buildDependencies(DefaultIdeaModule tapiModule, IdeaModule ideaModule, boolean offlineDependencyResolution) {
            ideaModule.setOffline(offlineDependencyResolution);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 12 14:00:13 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. pkg/volume/nfs/nfs_test.go

    		}
    		if mntDevs[0].Device != expectedDevice {
    			t.Errorf("unexpected nfs device, expected %q, got: %q", expectedDevice, mntDevs[0].Device)
    		}
    	}
    	log := fake.GetLog()
    	if len(log) != 1 {
    		t.Errorf("Mount was not called exactly one time. It was called %d times.", len(log))
    	} else {
    		if log[0].Action != mount.FakeActionMount {
    			t.Errorf("Unexpected mounter action: %#v", log[0])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 01 15:56:32 UTC 2022
    - 9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            when:
            plugin.apply(project)
    
            then:
            project.plugins.hasPlugin(JavaPlugin.class)
    
            project.convention.getPlugin(ApplicationPluginConvention.class) != null
            project.applicationName == project.name
            project.mainClassName == null
            project.applicationDefaultJvmArgs == []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        }
    
        @Test
        void canExecuteExternalScriptAgainstAnArbitraryObject() {
            createBuildSrc()
    
            testFile('external.gradle') << '''
    println 'quiet message'
    getLogging().captureStandardOutput(LogLevel.ERROR)
    println 'error message'
    new BuildSrcClass()
    assert 'doStuff' == name
    assert buildscript.classLoader == getClass().classLoader.parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top