Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 142 for disallows (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

            }
            fails ':checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve org:test:$selector1: Resolution strategy disallows usage of dynamic versions")
            failure.assertHasCause("Could not resolve org:test:$selector2: Resolution strategy disallows usage of dynamic versions")
    
            where:
            selector1        | selector2
            '[1.0, 2.0['     | '[1.0, 1.5['
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/module/module.go

    		// Entire set of ASCII punctuation, from which we remove characters:
    		//     ! " # $ % & ' ( ) * + , - . / : ; < = > ? @ [ \ ] ^ _ ` { | } ~
    		// We disallow some shell special characters: " ' * < > ? ` |
    		// (Note that some of those are disallowed by the Windows file system as well.)
    		// We also disallow path separators / : and \ (fileNameOK is only called on path element characters).
    		// We allow spaces (U+0020) in file names.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/syscall/exec_linux_test.go

    					}
    					t.Fatalf("got non-permission error") // Already logged above.
    				}
    				return
    			}
    
    			if err != nil {
    				if testenv.SyscallIsNotSupported(err) {
    					// May be inside a container that disallows CLONE_NEWUSER.
    					t.Skipf("skipping: CLONE_NEWUSER appears to be unsupported")
    				}
    				t.Fatalf("unexpected command failure; output:\n%s", out)
    			}
    
    			sout := strings.TrimSpace(string(out))
    			want := "root"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // functions:
    //
    //   bool AllowDynamicRangeQuantizedOperand(Operation *) const
    //   bool AllowDynamicRangeQuantizedResult(Operation *) const
    //
    // Full integer quantization disallows "DynamicRangeQuantized" operands or
    // results. Dynamic range quantization allows "DynamicRangeQuantized" operands
    // and results.
    template <typename ConcreteT, typename QuantizeOpT, typename DequantizeOpT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top