Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for Destinations (0.16 sec)

  1. tests/integration/ambient/baseline_test.go

    				t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    					"Destination": dst.Config().Service,
    				}, `apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    ---
    apiVersion: networking.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    				for _, dst := range route.Route {
    					gotHTTPHosts = append(gotHTTPHosts, dst.Destination.Host)
    				}
    			}
    		}
    		if !reflect.DeepEqual(gotHTTPHosts, []string{"private.ns1", "public.ns3", "delegate.ns2"}) {
    			t.Errorf("got %+v", gotHTTPHosts)
    		}
    	})
    
    	t.Run("destinations by gateway", func(t *testing.T) {
    		got := ps.virtualServiceIndex.destinationsByGateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message OutboundTrafficPolicyConfig {
      // Specifies the sidecar's default behavior when handling outbound traffic from the application.
      enum Mode {
        // Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
        ALLOW_ANY = 0;
        // Restrict outbound traffic to services defined in the service registry as well as those defined through ServiceEntries
        REGISTRY_ONLY = 1;
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/runtime/map.go

    func bucketEvacuated(t *maptype, h *hmap, bucket uintptr) bool {
    	b := (*bmap)(add(h.oldbuckets, bucket*uintptr(t.BucketSize)))
    	return evacuated(b)
    }
    
    // evacDst is an evacuation destination.
    type evacDst struct {
    	b *bmap          // current destination bucket
    	i int            // key/elem index into b
    	k unsafe.Pointer // pointer to current key storage
    	e unsafe.Pointer // pointer to current elem storage
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pilot/pkg/model/virtualservice_test.go

    							{
    								Destination: &networking.Destination{
    									Host: "productpage.org",
    									Port: &networking.PortSelector{
    										Number: 80,
    									},
    									Subset: "v2",
    								},
    							},
    						},
    					},
    					{
    						Route: []*networking.HTTPRouteDestination{
    							{
    								Destination: &networking.Destination{
    									Host: "productpage.org",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route_test.go

    					{
    						Destination: &networking.Destination{
    							Host: "example2.default.svc.cluster.local",
    							Port: &networking.PortSelector{
    								Number: 8484,
    							},
    						},
    					},
    				},
    			},
    			{
    				Name: "route 3",
    				Route: []*networking.HTTPRouteDestination{
    					{
    						Destination: &networking.Destination{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  7. staging/publishing/rules.yaml

    rules:
    - destination: apimachinery
      branches:
      - name: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.27
        go: 1.21.11
        source:
          branch: release-1.27
          dirs:
          - staging/src/k8s.io/apimachinery
      - name: release-1.28
        go: 1.21.11
        source:
          branch: release-1.28
          dirs:
          - staging/src/k8s.io/apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Inside the `doLast` closure, it uses `File.renameTo()` to move the file from the source directory to the destination directory:
    
    [source,groovy]
    ----
    task moveFile {
        doLast {
            def sourceFile = file('source.txt')
            def destFile = file('destination/new_name.txt')
    
            if (sourceFile.renameTo(destFile)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        project.dependencies.add("destination1", it)
                        configurations.destination2.dependencies.add(it)
                    }
    
                    doLast {
                        configurations.destination1.dependencies.each {
                            verifyDep(getOriginal(it), it)
                        }
    
                        configurations.destination2.dependencies.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          }
        }
    
        // Record 'dst' as an input of its subgraph, if applicable.
        if (IsInSubgraph(dst_func_id)) {
          // Look at the type of the destination not the source, since Ref output
          // Tensors can be automatically cast to non-Ref Tensors at the
          // destination.
          if (!edge->IsControlEdge()) {
            DataType dtype = edge->dst()->input_type(edge->dst_input());
            if (IsRefType(dtype)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top