Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for mycompany (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandlerTest.groovy

            }
            1 * repo2Content.includeModule("com.mycompany", "core")
            1 * repo1.content(_) >> { args ->
                args[0].execute(repo1Content)
            }
            1 * repo1Content.excludeModule("com.mycompany", "core")
            1 * repo3.content(_) >> { args ->
                args[0].execute(repo3Content)
            }
            1 * repo3Content.excludeModule("com.mycompany","core")
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 18:02:33 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

         * <pre class='autoTestedWithDeprecations'>
         * repositories {
         *   jcenter {
         *     artifactUrls = ["http://www.mycompany.com/artifacts1", "http://www.mycompany.com/artifacts2"]
         *   }
         *   jcenter {
         *     name = "nonDefaultName"
         *     artifactUrls = ["http://www.mycompany.com/artifacts1"]
         *   }
         * }
         * </pre>
         *
         * @param action a configuration action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. pilot/pkg/features/pilot.go

    		).Get()
    		return jwt.ConvertToJwksFetchMode(v)
    	}()
    
    	// IstiodServiceCustomHost allow user to bring a custom address or multiple custom addresses for istiod server
    	// for examples: 1. istiod.mycompany.com  2. istiod.mycompany.com,istiod-canary.mycompany.com
    	IstiodServiceCustomHost = env.Register("ISTIOD_CUSTOM_HOST", "",
    		"Custom host name of istiod that istiod signs the server cert. "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

                [libraries]
                com-company-libs-a = "com.company:a:1.0"
                com-companylibs-b = "com.companylibs:b:1.0"
                com-companyLibs-c = "com.companyLibs:c:1.0"
    
                com-company-d = "com.company:d:1.0"
                com-company-e = "com.company:e:1.0"
    
                [bundles]
                com-company-libs-bundle = ["com-company-d"]
                com-companylibs-bundle = ["com-company-e"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                .collect(Collectors.toList());
            List<String> shortest = splitGroups.get(0);
            if (shortest.size() < 2) {
                // we need at least a prefix of 2 elements, like "com.mycompany", to perform grouping
                return Collections.emptyList();
            }
            List<List<String>> commonPrefixes = new ArrayList<>();
            List<List<String>> remainder = Lists.newArrayList(splitGroups);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar.go

    				// with a domain attribute is a host cookie.
    				return host, true, nil
    			}
    			return "", false, errIllegalDomain
    		}
    	}
    
    	// The domain must domain-match host: www.mycompany.com cannot
    	// set cookies for .ourcompetitors.com.
    	if host != domain && !hasDotSuffix(host, domain) {
    		return "", false, errIllegalDomain
    	}
    
    	return domain, false, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    ----
    
    In case you want to reference a version declared in the `[versions]` section, you should use the `version.ref` property:
    
    ```
    [versions]
    some = "1.4"
    
    [libraries]
    my-lib = { group = "com.mycompany", name="mylib", version.ref="some" }
    ```
    
    --
    The TOML file format is very lenient and lets you write "dotted" properties as shortcuts to full object declarations.
    For example, this:
    
    ```
    a.b.c="d"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LocalExcludeResolveIntegrationTest.groovy

            'excluding by module and group'                    | [group: 'com.company', module: 'company'] | ['test-1.45.jar', 'foo-2.0.jar', 'bar-3.0.jar', 'other-company-4.0.jar']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. tests/create_test.go

    	}
    }
    
    func TestFirstOrCreateWithPrimaryKey(t *testing.T) {
    	company := Company{ID: 100, Name: "company100_with_primarykey"}
    	DB.FirstOrCreate(&company)
    
    	if company.ID != 100 {
    		t.Errorf("invalid primary key after creating, got %v", company.ID)
    	}
    
    	companies := []Company{
    		{ID: 101, Name: "company101_with_primarykey"},
    		{ID: 102, Name: "company102_with_primarykey"},
    	}
    	DB.Create(&companies)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Mar 19 03:50:28 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. tests/joins_test.go

    	}
    
    	if result.ID != user.ID {
    		t.Fatalf("result's id, %d, doesn't match user's id, %d", result.ID, user.ID)
    	}
    	// should find company
    	if result.Company.ID != *user.CompanyID {
    		t.Fatalf("result's id, %d, doesn't match user's company id, %d", result.Company.ID, *user.CompanyID)
    	}
    }
    
    func TestJoinWithSoftDeleted(t *testing.T) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top