Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for scope_ (0.26 sec)

  1. istioctl/pkg/describe/describe.go

    	if len(ingress.service.Status.LoadBalancer.Ingress) > 0 {
    		return ingress.service.Status.LoadBalancer.Ingress[0].IP
    	}
    
    	if hIP := ingress.pods[0].Status.HostIP; hIP != "" {
    		return hIP
    	}
    
    	// The scope of this function is to get the IP from Kubernetes, we do not
    	// ask Docker or minikube for an IP.
    	// See https://istio.io/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-ip-and-ports
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    These deprecated elements will be removed in a future version of Gradle.
    
    [[referencing_script_configure_method_from_container_configure_closure_deprecated]]
    ==== Deprecated implicit references to outer scope methods in some configuration blocks
    
    Prior to Gradle 7.6, Groovy scripts permitted access to root project configure methods
    within named container configure methods that throw `MissingMethodException`s.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    * Consumable configurations should not have their dependencies, hierarchy, attributes, etc. modified after they have been published or consumed as a variant.
    * Dependency scope configurations should not have their dependencies, constraints, etc. modified after a configuration that extends from them are observed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    // proxy. The SidecarScope object is a semi-processed view of the service
    // registry, and config state associated with the sidecar crd. The scope contains
    // a set of inbound and outbound listeners, services/configs per listener,
    // etc. The sidecar scopes are precomputed in the initSidecarContext
    // function based on the Sidecar API objects in each namespace. If there is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				});
    			}
    		},
    		defaults : {
    			// `data` can be a function:
    			//  * accepts two arguments - node being loaded and a callback to pass the result to
    			//  * will be executed in the current tree's scope & ajax won't be supported
    			data : false,
    			ajax : false,
    			correct_state : true,
    			progressive_render : false,
    			progressive_unload : false
    		},
    		_fn : {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/filesystem_interface.h

    ///     break ABI compatibility and cause all plugins to be recompiled, these
    ///     type of changes should be extremely rare.
    ///
    /// Next section will detail this as well as some corner cases that are out of
    /// scope for now.
    
    // LINT.IfChange
    typedef struct TF_RandomAccessFileOps {
      /// Releases resources associated with `*file`.
      ///
      /// Requires that `*file` is not used in any concurrent or subsequent
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          "http://[::0000:0000:0000:0000::0001]",
          "Invalid URL host: \"[::0000:0000:0000:0000::0001]\"",
        )
      }
    
      @Test
      fun hostIpv6ScopedAddress() {
        // java.net.InetAddress parses scoped addresses. These aren't valid in URLs.
        assertInvalid("http://[::1%2544]", "Invalid URL host: \"[::1%2544]\"")
      }
    
      @Test
      fun hostIpv6AddressTooManyLeadingZeros() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types/type.go

    // package-level type can be looked up by building its unique symbol sym (sym =
    // package.Lookup(name)) and checking sym.Def. If sym.Def is non-nil, the type
    // already exists at package scope and is available at sym.Def.(*ir.Name).Type().
    // Local types (which may have the same name as a package-level type) are
    // distinguished by their vargen, which is embedded in their symbol name.
    type Type struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	PodSelector *metav1.LabelSelector `json:"podSelector,omitempty" protobuf:"bytes,1,opt,name=podSelector"`
    
    	// Selects Namespaces using cluster-scoped labels. This field follows standard label
    	// selector semantics; if present but empty, it selects all namespaces.
    	//
    	// If PodSelector is also set, then the NetworkPolicyPeer as a whole selects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            return dependency("implementation", comment, dependencies);
        }
    
        /**
         * Adds one or more dependency constraints to the implementation scope.
         *
         * @param comment A description of why the constraints are required
         * @param dependencies The dependency constraints
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top