Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for mycompany (0.66 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. maven-compat/src/test/java/org/apache/maven/ProjectDependenciesResolverTest.java

            MavenSession session = createMavenSession(null);
            MavenProject project = session.getCurrentProject();
    
            new ProjectBuilder(project)
                    .addDependency(
                            "com.mycompany",
                            "system-dependency",
                            "1.0",
                            Artifact.SCOPE_SYSTEM,
                            new File(getBasedir(), "pom.xml").getAbsolutePath());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.2K 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. staging/src/k8s.io/api/discovery/v1/types.go

    	//   * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455
    	//
    	// * Other protocols should use implementation-defined prefixed names such as
    	// mycompany.com/my-custom-protocol.
    	// +optional
    	AppProtocol *string `json:"appProtocol,omitempty" protobuf:"bytes,4,name=appProtocol"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 9.5K 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. pkg/registry/storage/csinode/strategy_test.go

    			Name: "foo",
    		},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{
    				{
    					Name:         "valid-driver-name",
    					NodeID:       "valid-node",
    					TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    				},
    			},
    		},
    	}
    
    	volumeLimitsCases := []struct {
    		name     string
    		obj      *storage.CSINode
    		expected *storage.CSINode
    	}{
    		{
    			"empty allocatable",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 09:24:44 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/apis/storage/validation/validation_test.go

    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// driver name: dash only
    		ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io-kubernetes-storage-csi-driver",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/test/groovy/org/gradle/test/fixtures/maven/MavenScopeTest.groovy

            [createExclusion('com.company', 'important')] | null                                        | false
            [createExclusion('com.company', 'important')] | createExclusion('com.company', 'other')     | false
            [createExclusion('com.company', 'important')] | createExclusion('com.company', 'important') | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top