Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,327 for api1 (0.04 sec)

  1. pkg/config/analysis/analyzers/testdata/virtualservice_dupmatches.yaml

    spec:
      hosts:
      - sample.baz.svc.cluster.local
      http:
      - name: send /api/v1/products to sample.foo
        match:
        - name: prefix /api/v1/products
          uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: sample.foo.svc.cluster.local
      - name: send /api/v1/products to sample.bar
        match:
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/testdata/none_cds.json

            ]
          },
          "dns_lookup_family": 1,
          "LbConfig": null
        },
        "outbound|2443||api1.facebook.com": {
          "name": "outbound|2443||api1.facebook.com",
          "type": 1,
          "connect_timeout": 1000000000,
          "load_assignment": {
            "cluster_name": "outbound|2443||api1.facebook.com",
            "endpoints": [
              {
                "lb_endpoints": null
              },
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 26 15:28:15 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  3. tests/testdata/config/none.yaml

    spec:
      hosts:
      - www1.googleapis.com
      - api1.facebook.com
      tls:
      - match:
        - port: 2443
          sniHosts:
          - www1.googleapis.com
        route:
        - destination:
            host: www1.googleapis.com
      - match:
        - port: 2443
          sniHosts:
          - api1.facebook.com
        route:
        - destination:
            host: api1.facebook.com
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  4. pilot/pkg/xds/testdata/none_lds_tcp.json

                        "cluster": {
                          "Kind": {
                            "StringValue": "outbound|2443||api1.facebook.com"
                          }
                        },
                        "stat_prefix": {
                          "Kind": {
                            "StringValue": "outbound|2443||api1.facebook.com"
                          }
                        }
                      }
                    }
                  }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            given:
            repository {
                'org:test:1.0' {
                    variant('api1') {
                        attribute('custom', 'c1')
                        capability('cap1')
                    }
                    variant('api2') {
                        attribute('custom', 'c2')
                        capability('cap1')
                    }
                    variant('runtime1') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            file("input2.jar").text = "jar"
            buildFile("""
                configurations {
                    api1 {
                        attributes { attribute usage, 'api' }
                    }
                    api2 {
                        attributes { attribute usage, 'api' }
                    }
                }
    
                abstract class IdentityTransform implements TransformAction<TransformParameters.None> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/apis.go

    		if len(groupName) == 0 {
    			// the legacy group for core APIs is special that it is installed into /api via this special install method.
    			if err := s.GenericAPIServer.InstallLegacyAPIGroup(genericapiserver.DefaultLegacyAPIPrefix, &apiGroupInfo); err != nil {
    				return fmt.Errorf("error in registering legacy API: %w", err)
    			}
    		} else {
    			// everything else goes to /apis
    			nonLegacy = append(nonLegacy, &apiGroupInfo)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. operator/pkg/apis/apis.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package apis
    
    import (
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // AddToSchemes may be used to add all resources defined in the project to a Scheme
    var AddToSchemes runtime.SchemeBuilder
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 901 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/plugin/v1beta1/api.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1
    
    import (
    	api "k8s.io/kubelet/pkg/apis/deviceplugin/v1beta1"
    )
    
    // RegistrationHandler is an interface for handling device plugin registration
    // and plugin directory cleanup.
    type RegistrationHandler interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 11:05:20 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. hack/verify-api-groups.sh

    # groups_without_codegen is the list of group we EXPECT to not have the client generated for
    # them.  This happens for types that aren't served from the API server
    packages_without_install=(
    	"k8s.io/kubernetes/pkg/apis/abac"
    	"k8s.io/kubernetes/pkg/apis/admission"
    	"k8s.io/kubernetes/pkg/apis/apidiscovery"
    )
    known_version_files=(
    	"pkg/controlplane/import_known_versions.go"
    )
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top