Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 3,023 for addSdk (0.11 sec)

  1. releasenotes/notes/39699.yaml

    # - security-fix -- Used to specify that this change represents a vulnerability fix.
    # - feature -- Used to specify a new feature that has been added.
    # - test -- Used to describe additional testing added. This file is optional for
    #   tests, but included for completeness.
    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 15 15:18:33 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/packaging/src/main/kotlin/gradlebuild/instrumentation/transforms/InstrumentationMetadataTransform.kt

    import org.gradle.api.file.FileSystemLocation
    import org.gradle.api.file.FileType
    import org.gradle.api.provider.Provider
    import org.gradle.api.tasks.Classpath
    import org.gradle.work.ChangeType.ADDED
    import org.gradle.work.ChangeType.MODIFIED
    import org.gradle.work.ChangeType.REMOVED
    import org.gradle.work.DisableCachingByDefault
    import org.gradle.work.FileChange
    import org.gradle.work.InputChanges
    import java.io.File
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:00:26 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/SettingsScriptPluginIntegrationSpec.groovy

            publishSettingPlugin("""
    settings.gradle.beforeProject { org.gradle.api.Project project ->
        project.tasks.register("customTask") {
            doLast {
                System.out.println("Executing task added by a 'Settings' plugin")
            }
        }
    }
    """
            )
        }
    
        def "settings script with a plugins block - #settingScriptExtension"() {
            given:
            doConfigureSettingsPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbstractFingerprintCompareStrategy.java

            @Override
            public Change added(String path, String propertyTitle, FileSystemLocationFingerprint current) {
                return DefaultFileChange.added(path, propertyTitle, current.getType(), current.getNormalizedPath());
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. releasenotes/notes/mesh-expansion.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
    - 25933
    
    releaseNotes:
    - |
      **Added** port 15012 to the default list of ports for the `istio-ingressgateway` Service.
    - |
      **Deprecated** installation flags `values.global.meshExpansion.enabled` in favor of user-managed config and `values.gateways.istio-ingressgateway.meshExpansionPorts` in favor of `components.ingressGateways[name=istio-ingressgateway].k8s.service.ports`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependencyLockingState.java

        /**
         * Indicates if the lock state must be strictly validated.
         *
         * If {@code true}, each locked dependency is added as a strict constraint,
         * and the resolution result must exactly match the set of locked dependencies.
         *
         * If {@code false}, each locked dependency is added a regular (lenient) constraint,
         * and the resolution result is not verified against the set of locked dependencies.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. pkg/controller/endpointslicemirroring/reconciler.go

    			totals.removed += len(epSlice.Endpoints)
    		}
    		return slices, totals
    	}
    
    	if len(existingSlices) == 0 {
    		// if no existing slices, all desired endpoints will be added.
    		totals.added = desiredSet.Len()
    	} else {
    		// if >0 existing slices, mark all but 1 for deletion.
    		slices.toDelete = existingSlices[1:]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. fastapi/routing.py

                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark this *path operation* as deprecated.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
                    """
                ),
            ] = None,
            deprecated: Annotated[
                Optional[bool],
                Doc(
                    """
                    Mark this *path operation* as deprecated.
    
                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ExcludeRuleContainer.java

    import java.util.Set;
    
    /**
     * <p>A container for adding exclude rules for dependencies.</p>
     */
    public interface ExcludeRuleContainer {
        /**
         * Returns all the exclude rules added to this container. If no exclude rules has been added an empty list is
         * returned.
         */
        Set<ExcludeRule> getRules();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 07 09:47:55 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top