Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,438 for fixwd (0.06 sec)

  1. src/cmd/fix/import_test.go

    	return func(f *ast.File) bool {
    		fixed := false
    		if !imports(f, p1) {
    			addImport(f, p1)
    			fixed = true
    		}
    		if imports(f, p2) {
    			deleteImport(f, p2)
    			fixed = true
    		}
    		return fixed
    	}
    }
    
    func rewriteImportFn(oldnew ...string) func(*ast.File) bool {
    	return func(f *ast.File) bool {
    		fixed := false
    		for i := 0; i < len(oldnew); i += 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 5K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpPluginTest.groovy

            checkEclipseWtpComponentForWar()
            checkEclipseWtpFacet([
                    new Facet(FacetType.fixed, "jst.java", null),
                    new Facet(FacetType.fixed, "jst.web", null),
                    new Facet(FacetType.installed, "jst.web", "2.4"),
                    new Facet(FacetType.installed, "jst.java", "5.0")])
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 08 10:14:49 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

     * </p>
     *
     * <p>Like the value, the content may also be "fixed" or "changing" and these are somewhat independent. We end up with the following combinations:</p>
     *
     * <ul>
     *     <li>a fixed missing or broken value. Because there is no value, there is also no content.</li>
     *     <li>a fixed value with fixed content, for example a {@code Provider<String>} with a fixed value.</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

            def collection2 = factory.fixed("some collection", [file1, file2])
            collection2.files == [file1, file2] as Set
            collection2.buildDependencies.getDependencies(null).empty
            collection2.toString() == "some collection"
        }
    
        def "returns empty collection when fixed collection constructed with empty fixed array"() {
            expect:
            def collection = factory.fixed()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
                    }
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "S3 Requests"
                },
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/release/content/script.js

          }
        });
      }
    
      injectIssues(
        "https://services.gradle.org/fixed-issues/@baseVersion@",
        $("h2#fixed-issues"),
        "fixed-issues",
        "Retrieving the fixed issue information for @baseVersion@",
        function(i) {
          return i + " issues have been fixed in Gradle @baseVersion@.";
        }
      );
    
      injectIssues(
        "https://services.gradle.org/known-issues/@baseVersion@",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. releasenotes/notes/41425.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management 
    issue:
      - https://github.com/istio/istio/issues/40605
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 17 15:54:17 UTC 2022
    - 216 bytes
    - Viewed (0)
  8. releasenotes/notes/fix-multicluster-secret-filtering.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    
    issue:
      - https://github.com/istio/istio/issues/47433
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 20:05:39 UTC 2023
    - 246 bytes
    - Viewed (0)
  9. releasenotes/notes/41912.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: installation
    releaseNotes:
      - |
        **Fixed** `istioctl install` failed when specifying `--revision default`.
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 20:21:07 UTC 2022
    - 296 bytes
    - Viewed (0)
  10. src/cmd/fix/main_test.go

    		return
    	}
    
    	if fn == nil {
    		for _, fix := range fixes {
    			if fix.f(file) {
    				fixed = true
    			}
    		}
    	} else {
    		fixed = fn(file)
    	}
    
    	outb, err = gofmtFile(file)
    	if err != nil {
    		t.Errorf("printing: %v", err)
    		return
    	}
    
    	return string(outb), fixed, true
    }
    
    func TestRewrite(t *testing.T) {
    	// If cgo is enabled, enforce that cgo commands invoked by cmd/fix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top