Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 873 for fixwd (0.1 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/kotlin/build.gradle.kts

    // tag::fixed[]
    abstract class MyCopyTask : DefaultTask() { // <1>
    
        @get:InputDirectory abstract val source: DirectoryProperty // <2>
    
        @get:OutputDirectory abstract val destination: DirectoryProperty // <2>
    
        @get:Inject abstract val fs: FileSystemOperations // <3>
    
        @TaskAction
        fun action() {
            fs.copy { // <3>
                from(source)
                into(destination)
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 626 bytes
    - Viewed (0)
  2. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/eclipse/model/customOrgEclipseWstCommonProjectFacetCoreXml.xml

    <faceted-project>
      <fixed facet="jst.java"/>
      <fixed facet="jst.web"/>
      <installed facet="jst.web" version="2.4"/>
      <installed facet="jst.java" version="1.4"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 183 bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/main/java/org/gradle/internal/serialization/Cached.java

                }
                return result;
            }
    
            private Object writeReplace() {
                return new Fixed<>(result());
            }
        }
    
        private static class Fixed<T> extends Cached<T> {
    
            private final Try<T> result;
    
            public Fixed(Try<T> result) {
                this.result = result;
            }
    
            @Override
            public T get() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. releasenotes/notes/44002.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 44002
    releaseNotes:
      - |
        **Fixed** `istioctl experimental revision describe` warning gateway is not enabled when gateway exists.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 28 22:51:54 UTC 2023
    - 306 bytes
    - Viewed (0)
  5. releasenotes/notes/dr-san-validation.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 40801
    releaseNotes:
    - |
      **Fixed** an issue with where a `DestinationRule` applying to multiple services could incorrectly apply an unexpected `subjectAltNames` field.
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 08 17:32:33 UTC 2022
    - 357 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/groovy/build.gradle

                from source
                into destination
            }
        }
    }
    
    // tag::fixed-reuse[]
    tasks.register('someTask', MyCopyTask) {
        def projectDir = layout.projectDirectory
        source = projectDir.dir('source')
        destination = projectDir.dir(providers.systemProperty('someDestination')) // <1>
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  7. releasenotes/notes/gw-hostname-resolution.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - https://github.com/istio/istio/issues/44155
    releaseNotes:
      - |
        **Fixed** an issue where istiod does not retry resolving east-west gateway hostnames on failure.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 16:17:56 UTC 2023
    - 370 bytes
    - Viewed (0)
  8. releasenotes/notes/40244.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - https://github.com/istio/istio/issues/39629
    releaseNotes:
      - |
        **Fixed** setting `exportTo` field and `networking.istio.io/exportTo` annotation lead to incorrect IST0101 message.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 03 13:42:59 UTC 2022
    - 391 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/groovy/build.gradle

    // tag::fixed[]
    abstract class MyCopyTask extends DefaultTask { // <1>
    
        @InputDirectory abstract DirectoryProperty getSource() // <2>
    
        @OutputDirectory abstract DirectoryProperty getDestination() // <2>
    
        @Inject abstract FileSystemOperations getFs() // <3>
    
        @TaskAction
        void action() {
            fs.copy { // <3>
                from source
                into destination
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 617 bytes
    - Viewed (0)
  10. doc/initial/1-intro.md

    <!--
    NOTE: In this document and others in this directory, the convention is to
    set fixed-width phrases with non-fixed-width spaces, as in
    `hello` `world`.
    -->
    
    <style>
      main ul li { margin: 0.5em 0; }
    </style>
    
    ## DRAFT RELEASE NOTES — Introduction to Go 1.N {#introduction}
    
    **Go 1.N is not yet released. These are work-in-progress release notes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
Back to top