Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 370 for disallows (0.42 sec)

  1. pkg/test/framework/components/echo/echotest/filters.go

    var SameNetwork CombinationFilter = func(from echo.Instance, to echo.Instances) echo.Instances {
    	return match.Network(from.Config().Cluster.NetworkName()).GetMatches(to)
    }
    
    // NoSelfCalls disallows self-calls where from and to have the same service name. Self-calls can
    // by-pass the sidecar, so tests relying on sidecar logic will sent to disable self-calls by default.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/strconv/quote.go

    // The second argument, quote, specifies the type of literal being parsed
    // and therefore which escaped quote character is permitted.
    // If set to a single quote, it permits the sequence \' and disallows unescaped '.
    // If set to a double quote, it permits \" and disallows unescaped ".
    // If set to zero, it does not permit either escape and allows both quote characters to appear unescaped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         * This is similar to calling {@link #convention(Map)} with a <code>null</code> argument.
         * </p>
         */
        @Incubating
        @Override
        MapProperty<K, V> unsetConvention();
    
        /**
         * Disallows further changes to the value of this property. Calls to methods that change the value of this property, such as {@link #set(Map)} or {@link #put(Object, Object)} will fail.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/Property.java

         *
         * <p>
         * This is similar to calling {@link #convention(Object)} with a <code>null</code> argument.
         * </p>
         */
        @Override
        Property<T> unsetConvention();
    
        /**
         * Disallows further changes to the value of this property. Calls to methods that change the value of this property,
         * such as {@link #set(Object)}, {@link #set(Provider)}, {@link #value(Object)} and {@link #value(Provider)} will fail,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    incomingEdge.failWith(new ModuleVersionResolveException(selector, () ->
                        String.format("Could not resolve %s: Resolution strategy disallows usage of dynamic versions", selector)));
                }
            }
        }
    
        private static void validateChangingVersions(ComponentState selected) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                }
            }
        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
        @Issue("https://github.com/gradle/gradle/issues/16888")
        def "disallows aliases which have a name clash with Java methods"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	}
    	cfg := new(Config)
    	if err := json.Unmarshal(data, cfg); err != nil {
    		return nil, fmt.Errorf("cannot decode JSON config file %s: %v", filename, err)
    	}
    	if len(cfg.GoFiles) == 0 {
    		// The go command disallows packages with no files.
    		// The only exception is unsafe, but the go command
    		// doesn't call vet on it.
    		return nil, fmt.Errorf("package has no files: %s", cfg.ImportPath)
    	}
    	return cfg, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/os/removeall_test.go

    	// prevents Remove from removing the files within that directory.
    	if err := Chmod(path, 0555); err != nil {
    		t.Fatal(err)
    	}
    	defer Chmod(path, 0755)
    
    	// This call should not hang, even on a platform that disallows file deletion
    	// from read-only directories.
    	err := RemoveAll(path)
    
    	if Getuid() == 0 {
    		// On many platforms, root can remove files from read-only directories.
    		return
    	}
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:21:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/html.go

    				p.closeBlock()
    			}
    			return true
    		}
    	}
    
    	// case 7
    	if p.para() == nil {
    		if _, e, ok := parseHTMLOpenTag(p, t, 0); ok && skipSpace(t, e) == len(t) {
    			if e != len(t) {
    				// Goldmark disallows trailing space
    				p.corner = true
    			}
    			b := &htmlBuilder{endBlank: true}
    			p.addBlock(b)
    			b.text = append(b.text, s.string())
    			return true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    The following example shows a rule that disallows a particular version of a module but allows the dynamic version to choose the next best candidate.
    
    .Component selection rule
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top