Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for mycompany (0.99 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/dns/client/dns_test.go

    			host:     "foo.svc.mesh.company.net.",
    			expected: a("foo.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    			name:     "success: wild card with namespace with domain returns A record correctly",
    			host:     "foo.foons.svc.mesh.company.net.",
    			expected: a("foo.foons.svc.mesh.company.net.", []netip.Addr{netip.MustParseAddr("10.1.2.3")}),
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/conversion_test.go

    	}
    
    	sa := service.ServiceAccounts
    	if sa == nil || len(sa) != 4 {
    		t.Fatalf("number of service accounts is incorrect")
    	}
    	expected := []string{
    		saC, saD,
    		"spiffe://company.com/ns/default/sa/" + saA,
    		"spiffe://company.com/ns/default/sa/" + saB,
    	}
    	if !reflect.DeepEqual(sa, expected) {
    		t.Fatalf("Unexpected service accounts %v (expecting %v)", sa, expected)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. callbacks/query.go

    					relation, ok := db.Statement.Schema.Relationships.Relations[join.Name]
    					if ok {
    						isRelations = true
    						relations = append(relations, relation)
    					} else {
    						// handle nested join like "Manager.Company"
    						nestedJoinNames := strings.Split(join.Name, ".")
    						if len(nestedJoinNames) > 1 {
    							isNestedJoin := true
    							gussNestedRelations := make([]*schema.Relationship, 0, len(nestedJoinNames))
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. schema/relationship_test.go

    		References: []Reference{
    			{"ID", "", "UserID", "Account", "", true},
    		},
    	})
    
    	checkStructRelation(t, &result, Relation{
    		Name: "Company", Type: schema.BelongsTo, Schema: "", FieldSchema: "Company",
    		References: []Reference{
    			{"ID", "Company", "CompanyID", "", "", false},
    		},
    	})
    }
    
    func TestSameForeignKey(t *testing.T) {
    	type UserAux struct {
    		gorm.Model
    		Aux  string
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top