Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 447 for Mainer (0.13 sec)

  1. ISSUES.md

    the whole community, e.g., fixing bugs and adding features. Individual support
    should be sought on Stack Overflow or other non-GitHub channels. It helps us to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 11 22:37:27 UTC 2021
    - 606 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/internal/SourceFoldersCreator.java

                }
                givenSources.add(folder.getName());
                trimmedSourceFolders.add(folder);
            }
            return trimmedSourceFolders;
        }
    
            private static final Joiner COMMA_JOINER = Joiner.on(',');
        private void addScopeAttributes(SourceFolder folder, SourceSet sourceSet, Multimap<SourceSet, SourceSet> sourceSetUsages) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

    executer.expectDocumentedDeprecationWarning("While resolving configuration 'conf', it was also selected as a variant. Configurations should not act as both a resolution root and a variant simultaneously. Depending on the resolved configuration in this manner has been deprecated. This will fail with an error in Gradle 9.0. Be sure to mark configurations meant for resolution as canBeConsumed=false or use the 'resolvable(String)' configuration factory method to create them. Consult the upgrading guide for...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

     * limitations under the License.
     */
    package org.gradle.plugin.use.resolve.internal;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.Joiner;
    import org.gradle.api.artifacts.ArtifactView;
    import org.gradle.api.artifacts.Configuration;
    import org.gradle.api.artifacts.ConfigurationContainer;
    import org.gradle.api.artifacts.Dependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/match/matchers_test.go

    func (f fakeInstance) Addresses() []string {
    	panic("implement me")
    }
    
    func (f fakeInstance) Workloads() (echo.Workloads, error) {
    	panic("implement me")
    }
    
    func (f fakeInstance) WorkloadsOrFail(test.Failer) echo.Workloads {
    	panic("implement me")
    }
    
    func (f fakeInstance) MustWorkloads() echo.Workloads {
    	panic("implement me")
    }
    
    func (f fakeInstance) Clusters() cluster.Clusters {
    	panic("implement me")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/AbstractRepositoryMetadataSource.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.repositories.metadata;
    
    import com.google.common.base.Joiner;
    import org.gradle.api.artifacts.ModuleVersionIdentifier;
    import org.gradle.api.artifacts.component.ModuleComponentIdentifier;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.ComponentResolvers;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/caller.go

    	From      Caller
    	Opts      CallOptions
    	Responses echo.Responses
    }
    
    type Caller interface {
    	// Call from this Instance to a target Instance.
    	Call(options CallOptions) (CallResult, error)
    	CallOrFail(t test.Failer, options CallOptions) CallResult
    }
    
    type Callers []Caller
    
    // Instances returns an Instances if all callers are Instance, otherwise returns nil.
    func (c Callers) Instances() Instances {
    	var out Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 12 22:50:35 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. pkg/test/util/tmpl/execute.go

    	if err := t.Execute(&b, data); err != nil {
    		return "", err
    	}
    
    	return b.String(), nil
    }
    
    // ExecuteOrFail calls Execute and fails the test if it returns an error.
    func ExecuteOrFail(t test.Failer, t2 *template.Template, data any) string {
    	t.Helper()
    	s, err := Execute(t2, data)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. src/race.bat

    set...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 16:59:17 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. pkg/test/framework/config.go

    					c.StableName(), err, s))
    			}
    		}
    	}
    	return outErr
    }
    
    func (c *configFactory) WaitForConfigOrFail(ctx resource.Context, t test.Failer, ns string, yamlText ...string) {
    	err := c.WaitForConfig(ctx, ns, yamlText...)
    	if err != nil {
    		// TODO(https://github.com/istio/istio/issues/37148) fail hard in this case
    		t.Log(err)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top