Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 116 for getPost (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

         */
        @Nonnull
        @Override
        public Node collectDependencies(@Nonnull Artifact artifact) {
            return getService(DependencyResolver.class).collect(this, artifact).getRoot();
        }
    
        /**
         * Shortcut for <code>getService(DependencyResolver.class).collect(...)</code>
         *
         * @throws DependencyResolverException if the dependency collection failed
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                        .launcherFor(spec -> spec.getLanguageVersion().set(JavaLanguageVersion.of(21)))
                );
                task.getDocsDirectory().convention(extension.getDocumentationRenderedRoot());
                task.getPort().convention(webserverPort);
    
                task.dependsOn(extension.getRenderedDocumentation());
            });
    
            tasks.register("docs", task -> {
                task.setDescription("Generates all documentation");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('https://example.com/').getScheme() == 'https'",
    				"url('https://example.com:80/').getHost() == 'example.com:80'",
    				"url('https://example.com/').getHost() == 'example.com'",
    				"url('https://[::1]:80/').getHost() == '[::1]:80'",
    				"url('https://[::1]/').getHost() == '[::1]'",
    				"url('/path').getHost() == ''",
    				"url('https://example.com:80/').getHostname() == 'example.com'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            }
            @SuppressWarnings("unchecked") List<ModelView<?>> views = Arrays.asList(array);
            return views;
        }
    
        @Override
        public MutableModelNode getRoot() {
            return modelGraph.getRoot();
        }
    
        @Nullable
        public MutableModelNode node(ModelPath path) {
            return modelGraph.find(path);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	_, watchErr := store.Watch(ctx, invalidKey, storage.ListOptions{})
    	expectInvalidKey("Watch", watchErr)
    	expectInvalidKey("Get", store.Get(ctx, invalidKey, storage.GetOptions{}, nil))
    	expectInvalidKey("GetList", store.GetList(ctx, invalidKey, storage.ListOptions{}, nil))
    	expectInvalidKey("GuaranteedUpdate", store.GuaranteedUpdate(ctx, invalidKey, nil, true, nil, nil, nil))
    	_, countErr := store.Count(invalidKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                    plugin, parent, null, foreignImports, toAetherArtifacts(pluginArtifacts));
    
            discoverPluginComponents(pluginRealm, plugin, pluginDescriptor);
    
            pluginDescriptor.setDependencyNode(result.getRoot());
            pluginDescriptor.setClassRealm(pluginRealm);
            pluginDescriptor.setArtifacts(pluginArtifacts);
        }
    
        private void discoverPluginComponents(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

            return parent == null ? null : parent.getMutableModel();
        }
    
        @Override
        public GradleInternal getRoot() {
            GradleInternal parent = getParent();
            if (parent == null) {
                return this;
            } else {
                return parent.getRoot();
            }
        }
    
        @Override
        public boolean isRootBuild() {
            return parent == null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/services/LoggingServiceRegistry.java

            CommandLineLogging loggingServices = new CommandLineLogging();
            LoggingManagerInternal rootLoggingManager = loggingServices.get(DefaultLoggingManagerFactory.class).getRoot();
            rootLoggingManager.captureSystemSources();
            rootLoggingManager.attachSystemOutAndErr();
            return loggingServices;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

            this.root = rootUri;
        }
    
        @Override
        public String toString() {
            return "Maven repository '" + getName() + "'";
        }
    
        public URI getRoot() {
            return root;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_test.go

    		t.Fatalf("Failed to initialize cacher: %v", err)
    	}
    	ctx := context.Background()
    	terminate := func() {
    		cacher.Stop()
    		server.Terminate(t)
    	}
    
    	// Since some tests depend on the fact that GetList shouldn't fail,
    	// we wait until the error from the underlying storage is consumed.
    	if err := wait.PollInfinite(100*time.Millisecond, wrappedStorage.ErrorsConsumed); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top