Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,023 for addSdk (0.14 sec)

  1. releasenotes/notes/tracing-canonical-service.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 28801
    
    releaseNotes:
    - |
      **Added** canonical service tags to Envoy-generated trace spans.
    upgradeNotes:
      - title: Service Tags added to trace spans
        content: |
          Istio now configures Envoy to include tags identifying the canonical service for a workload in generated trace spans.
    
          This will lead to a small increase in storage per span for tracing backends.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 582 bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathChangeDetector.java

                        }
                    }
                    // else, unchanged; check next file
                } else {
                    Change added = changeFactory.added(currentAbsolutePath, propertyTitle, currentItem);
                    if (!visitor.visitChange(added)) {
                        return false;
                    }
                }
            }
    
            for (String previousAbsolutePath : unaccountedForPreviousItems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/component/AdhocComponentWithVariants.java

         * format.  Note that if multiple actions are added, they are executed in the order they were added.
         *
         * @param outgoingConfiguration the configuration corresponding to the variant to configure with a given action
         * @param action an additional action to be executed to configure the variant prior to publishing
         * @throws InvalidUserDataException if the specified variant was not already added to this component
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 19 14:20:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/interpodaffinity/plugin.go

    			"pod", klog.KObj(pod), "modifiedPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    	// Pod is added. Return Queue when the added pod matching the target pod's affinity.
    	if modifiedPod != nil {
    		if podMatchesAllAffinityTerms(terms, modifiedPod) {
    			logger.V(5).Info("a scheduled pod was added and it matches the target pod's affinity",
    				"pod", klog.KObj(pod), "modifiedPod", klog.KObj(modifiedPod))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 03:08:44 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. releasenotes/notes/skip-mx-headers.yaml

    kind: feature
    area: traffic-management
    issue:
    - https://github.com/istio/istio/issues/17635
    releaseNotes:
      - |
        **Added** a new configuration to `ProxyHeaders`, `MetadataExchangeHeaders`. The `IN_MESH` mode ensures `x-envoy-peer-metadata` and `x-envoy-peer-metadata-id`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 30 03:27:06 UTC 2023
    - 418 bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/init1.go

    var y3 = x3
    
    type T3 struct{}
    
    func (T3) m() int {
    	_ = y3
    	return 0
    }
    
    var x4 /* ERROR "initialization cycle" */ = T4{}.m // <<<< added {}
    
    var y4 = x4
    
    type T4 struct{}
    
    func (T4) m() int {
    	_ = y4
    	return 0
    }
    
    var x5 /* ERROR "initialization cycle" */ = T5{}.m() // <<<< added ()
    
    var y5 = x5
    
    type T5 struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.net_pkgadded_v1.0.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded in v1.1.0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 347 bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

     * to the project directory.
     *
     * @param url the base URL of this repository. This URL is used to find both POMs and artifact files.
     * @return The added repository.
     *
     * @see [RepositoryHandler.maven]
     * @see [MavenArtifactRepository.setUrl]
     */
    fun RepositoryHandler.maven(url: Any) =
        maven { setUrl(url) }
    
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

                        } else {
                            if (!diffListener.added(currentProperty)) {
                                return false;
                            }
                            break;
                        }
                    } else if (compared > 0) {
                        if (!diffListener.added(currentProperty)) {
                            return false;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler_helpers.go

    	s.toDelete = append(s.toDelete, slices.toDelete...)
    }
    
    // totalsByAction includes total numbers for added and removed.
    type totalsByAction struct {
    	added, updated, removed int
    }
    
    // add adds totals from another totalsByAction struct.
    func (t *totalsByAction) add(totals totalsByAction) {
    	t.added += totals.added
    	t.updated += totals.updated
    	t.removed += totals.removed
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top