Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 166 for wildcards (0.16 sec)

  1. internal/s3select/sql/parser_test.go

    	)
    
    	j := JSONPathElement{}
    	cases := []string{
    		// Key
    		"['name']", ".name", `."name"`,
    
    		// Index
    		"[2]", "[0]", "[100]",
    
    		// Object wildcard
    		".*",
    
    		// array wildcard
    		"[*]",
    	}
    	for i, tc := range cases {
    		err := p.ParseString(tc, &j)
    		if err != nil {
    			t.Fatalf("%d: %v", i, err)
    		}
    		// repr.Println(j, repr.Indent("  "), repr.OmitEmpty(true))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_ambiguous_pkg.txt

    go get example.net/ambiguous@none example.net/ambiguous/nested/pkg@v0.1.0
    go list -m all
    stdout '^example.net/ambiguous/nested v0.1.0$'
    ! stdout '^example.net/ambiguous '
    
    
    # In contrast, if we do the same thing tacking a wildcard pattern ('/...') on
    # the end of the package path, we get different behaviors depending on the
    # initial state, and no error. (This seems to contradict the “same meaning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  3. docs/debugging/xattr/main.go

    	return xattr.LSet(path, name, data)
    }
    
    func main() {
    	flag.StringVar(&path, "path", "", "path name where the attribute shall be applied")
    	flag.StringVar(&name, "name", "", "attribute name or it can be a wildcard if '.' is specified")
    	flag.Uint64Var(&value, "value", 0, "attribute value expects the value to be uint64")
    	flag.BoolVar(&set, "set", false, "this is a set attribute operation")
    
    	flag.Parse()
    
    	if set && value == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 29 23:52:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/contracts/firContractUtils.kt

                ConeContractConstantValues.NOT_NULL -> KaContractReturnsNotNullEffectDeclaration(builder.token)
                ConeContractConstantValues.WILDCARD -> KaContractReturnsSuccessfullyEffectDeclaration(builder.token)
                is KtBooleanConstantReference -> KaContractReturnsSpecificValueEffectDeclaration(
                    KaContractConstantValue(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DependencyMetadata.java

         */
        boolean isChanging();
    
        /**
         * Should the dependency be resolved transitively?
         * A false value is effectively equivalent to a wildcard exclusion.
         */
        boolean isTransitive();
    
        /**
         * Is this a strong dependency, does it is merely a constraint on the module to select if brought in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 11:43:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. pilot/test/xdstest/validate.go

    		} else {
    			check[s] = i1
    		}
    	}
    
    	// Due to the trie based logic of FCM, an unset field is only a wildcard if no
    	// other FCM sets it. Therefore, we should ensure we explicitly set the FCM on
    	// all match clauses if its set on any other match clause See
    	// https://github.com/envoyproxy/envoy/issues/12572 for details
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_replaced.txt

    cp go.mod go.mod.orig
    
    env oldGOPROXY=$GOPROXY
    
    # If a wildcard replacement exists for an otherwise-nonexistent module,
    # 'go get' should resolve it to the minimum valid pseudo-version.
    
    go mod edit -replace=example.com/x=./x
    go get example.com/x
    
    go list -m example.com/x
    stdout '^example.com/x v0.0.0-00010101000000-000000000000 '
    
    # If specific-version replacements exist, the highest matching version should be used.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/middleware.md

    ```Python hl_lines="2  6-8"
    {!../../../docs_src/advanced_middleware/tutorial002.py!}
    ```
    
    Die folgenden Argumente werden unterstützt:
    
    * `allowed_hosts` – Eine Liste von Domain-Namen, die als Hostnamen zulässig sein sollten. Wildcard-Domains wie `*.example.com` werden unterstützt, um Subdomains zu matchen. Um jeden Hostnamen zu erlauben, verwenden Sie entweder `allowed_hosts=["*"]` oder lassen Sie diese Middleware weg.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:15 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/lif/link.go

    		}
    	}
    }
    
    // Links returns a list of logical data links.
    //
    // The provided af must be an address family and name must be a data
    // link name. The zero value of af or name means a wildcard.
    func Links(af int, name string) ([]Link, error) {
    	eps, err := newEndpoints(af)
    	if len(eps) == 0 {
    		return nil, err
    	}
    	defer func() {
    		for _, ep := range eps {
    			ep.close()
    		}
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/os/tempfile.go

    		}
    		return f, err
    	}
    }
    
    var errPatternHasSeparator = errors.New("pattern contains path separator")
    
    // prefixAndSuffix splits pattern by the last wildcard "*", if applicable,
    // returning prefix as the part before "*" and suffix as the part after "*".
    func prefixAndSuffix(pattern string) (prefix, suffix string, err error) {
    	for i := 0; i < len(pattern); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 18:04:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top