Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 433 for addLink (0.16 sec)

  1. cluster/gce/upgrade-aliases.sh

        echo "${secondary_ranges} already contains both pods-default and services-default secondary ranges"
        return
      fi
    
      echo "Adding secondary ranges: pods-default (${CLUSTER_IP_RANGE}), services-default (${SERVICE_CLUSTER_IP_RANGE})"
      until gcloud compute networks subnets update "${IP_ALIAS_SUBNETWORK}" \
        --project="${PROJECT}" --region="${REGION}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/values.yaml

        # always skip the injection on pods that match that label selector, regardless of the global policy.
        # See https://istio.io/docs/setup/kubernetes/additional-setup/sidecar-injection/#more-control-adding-exceptions
        neverInjectSelector: []
        alwaysInjectSelector: []
    
        # injectedAnnotations are additional annotations that will be added to the pod spec after injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. manifests/charts/istiod-remote/values.yaml

        # always skip the injection on pods that match that label selector, regardless of the global policy.
        # See https://istio.io/docs/setup/kubernetes/additional-setup/sidecar-injection/#more-control-adding-exceptions
        neverInjectSelector: []
        alwaysInjectSelector: []
        # injectedAnnotations are additional annotations that will be added to the pod spec after injection
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    func (s *GenericAPIServer) AddLivezChecks(delay time.Duration, checks ...healthz.HealthChecker) error {
    	return s.livezRegistry.addDelayedHealthChecks(delay, checks...)
    }
    
    // addReadyzShutdownCheck is a convenience function for adding a readyz shutdown check, so
    // that we can register that the api-server is no longer ready while we attempt to gracefully
    // shutdown.
    func (s *GenericAPIServer) addReadyzShutdownCheck(stopCh <-chan struct{}) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. internal/http/listener.go

    		if e != nil {
    			if opts.Trace != nil {
    				opts.Trace(fmt.Sprint("listenCfg.Listen: ", e))
    			}
    
    			listenErrs[i] = e
    			continue
    		}
    
    		if opts.Trace != nil {
    			opts.Trace(fmt.Sprint("adding listener to ", l.Addr()))
    		}
    
    		listeners = append(listeners, l)
    	}
    
    	if len(listeners) == 0 {
    		// No listeners initialized, no need to continue
    		return
    	}
    
    	listener = &httpListener{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. docs/en/docs/how-to/async-sql-encode-databases.md

    ```Python
    {**note.dict()}
    ```
    
    `**note.dict()` "unpacks" the key value pairs directly, so, `{**note.dict()}` would be, more or less, a copy of `note.dict()`.
    
    And then, we extend that copy `dict`, adding another key-value pair: `"id": last_record_id`:
    
    ```Python
    {**note.dict(), "id": last_record_id}
    ```
    
    So, the final result returned would be something like:
    
    ```Python
    {
        "id": 1,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/README.md

     - [Asciidoctor User Manual](https://asciidoctor.org/docs/user-manual/)
     - [Asciidoctor Gradle Plugin Reference](https://asciidoctor.org/docs/asciidoctor-gradle-plugin/)
    
    ### Adding new chapters
    
    When adding a new chapter to the manual do the following steps:
    1. Create a file called `<chapter>.adoc` in a suitable subdirectory of `src/docs/userguide` and write the content there.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

    import org.gradle.api.provider.ProviderFactory;
    import org.gradle.api.toolchain.management.ToolchainManagement;
    import org.gradle.caching.configuration.BuildCacheConfiguration;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.declarative.dsl.model.annotations.Configuring;
    import org.gradle.declarative.dsl.model.annotations.Restricted;
    import org.gradle.internal.HasInternalProtocol;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			EndpointPort: 6060,
    		},
    	}
    
    	for _, wi := range []*model.WorkloadInstance{wiRatings1, wiDetails1, wiReviews1, wiReviews2, wiProduct1} {
    		ctl.workloadInstanceHandler(wi, model.EventAdd) // simulate adding a workload entry
    	}
    
    	cases := []struct {
    		name  string
    		proxy *model.Proxy
    		want  []model.ServiceTarget
    	}{
    		{
    			name:  "proxy with unspecified IP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  10. src/hash/crc64/crc64.go

    			p = p[8:]
    		}
    	}
    	// For reminders or small sizes
    	for _, v := range p {
    		crc = tab[byte(crc)^v] ^ (crc >> 8)
    	}
    	return ^crc
    }
    
    // Update returns the result of adding the bytes in p to the crc.
    func Update(crc uint64, tab *Table, p []byte) uint64 {
    	return update(crc, tab, p)
    }
    
    func (d *digest) Write(p []byte) (n int, err error) {
    	d.crc = update(d.crc, d.tab, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top