Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,438 for fixwd (0.17 sec)

  1. releasenotes/notes/51289.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    issue:
      - https://github.com/istio/istio/issues/51289
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 01:52:23 UTC 2024
    - 216 bytes
    - Viewed (0)
  2. src/cmd/fix/buildtag.go

    	fixed := false
    	for _, g := range f.Comments {
    		sawGoBuild := false
    		for i, c := range g.List {
    			if strings.HasPrefix(c.Text, "//go:build ") {
    				sawGoBuild = true
    			}
    			if sawGoBuild && strings.HasPrefix(c.Text, "// +build ") {
    				g.List = g.List[:i]
    				fixed = true
    				break
    			}
    		}
    	}
    
    	return fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/fix/netipv6zone.go

    						cl.Elts = append(cl.Elts[:i], cl.Elts[i+1:]...)
    					} else {
    						cl.Elts[i] = &ast.KeyValueExpr{
    							Key:   ast.NewIdent("Port"),
    							Value: e,
    						}
    					}
    				}
    				fixed = true
    			}
    		}
    	})
    	return fixed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
                    }
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Replication Requests"
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  5. releasenotes/notes/43099.yaml

      - '[Original Design] https://docs.google.com/document/d/1oT6pmRhOw7AtsldU0-HbfA0zA26j9LYiBD_eepeErsQ/'
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 08 17:19:35 UTC 2023
    - 445 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/kotlin/build.gradle.kts

                from(source)
                into(destination)
            }
        }
    }
    
    // tag::fixed-reuse[]
    tasks.register<MyCopyTask>("someTask") {
        val 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
    - 616 bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/webAppJava6WtpFacet.xml

    <faceted-project>
    	<fixed facet="jst.java"/>
    	<fixed facet="jst.web"/>
    	<installed facet="jst.web" version="2.4"/>
    	<installed facet="jst.java" version="6.0"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 179 bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             *
             * @see #fixed
             */
            @Nullable
            static <T, A> SideEffect<T> fixedFrom(ExecutionTimeValue<A> value) {
                if (!value.hasFixedValue()) {
                    return null;
                }
    
                return fixed(value.getFixedValue(), value.getSideEffect());
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  10. 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)
Back to top