Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 266 for umagic (0.13 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/basic-http.yaml

      rules:
      - matches:
        - path:
            type: PathPrefix
            value: /bar
        backendRefs:
        - name: my-service1
          port: 8080
      - matches:
        - headers:
          - type: Exact
            name: magic
            value: foo
          queryParams:
          - type: Exact
            name: great
            value: example
          path:
            type: PathPrefix
            value: /some/thing
          method: GET
        backendRefs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/stat_openfile.go

    // Copyright 2019 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build (js && wasm) || plan9
    
    // On plan9, per http://9p.io/magic/man2html/2/access: “Since file permissions
    // are checked by the server and group information is not known to the client,
    // access must open the file to check permissions.”
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 12 16:45:11 UTC 2022
    - 791 bytes
    - Viewed (0)
  3. tests/test_tutorial/test_path_operation_advanced_configurations/test_tutorial006.py

        assert response.json() == {
            "size": 30,
            "content": {
                "name": "Maaaagic",
                "price": 42,
                "description": "Just kiddin', no magic here. ✨",
            },
        }
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java

            /*
             * MNG-4312: We neither have reserved all of the above magic expressions nor is their set fixed/well-known (it
             * gets occasionally extended by newer Maven versions). This imposes the risk for existing plugins to
             * unintentionally use such a magic expression for an ordinary property. So here we check whether we
             * ended up with a magic value that is not compatible with the type of the configured mojo parameter (a string
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 30 23:39:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. src/internal/coverage/decodemeta/decodefile.go

    	// Read file header.
    	if err := binary.Read(r.fileRdr, binary.LittleEndian, &r.hdr); err != nil {
    		return err
    	}
    
    	// Verify magic string
    	m := r.hdr.Magic
    	g := coverage.CovMetaMagic
    	if m[0] != g[0] || m[1] != g[1] || m[2] != g[2] || m[3] != g[3] {
    		return fmt.Errorf("invalid meta-data file magic string")
    	}
    
    	// Vet the version. If this is a meta-data file from the future,
    	// we won't be able to read it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 14 22:30:23 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. src/cmd/internal/archive/archive.go

    	errNotObject        = errors.New("unrecognized object file format")
    )
    
    type ErrGoObjOtherVersion struct{ magic []byte }
    
    func (e ErrGoObjOtherVersion) Error() string {
    	return fmt.Sprintf("go object of a different version: %q", e.magic)
    }
    
    // An objReader is an object file reader.
    type objReader struct {
    	a      *Archive
    	b      *bio.Reader
    	err    error
    	offset int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/shared-configuration.kt

        }
    }
    
    
    private
    fun IntegrationTest.addDebugProperties() {
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.debug")) {
            systemProperties["org.gradle.integtest.debug"] = "true"
            testLogging.showStandardStreams = true
        }
        // TODO Move magic property out
        if (project.hasProperty("org.gradle.integtest.verbose")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/NtlmContext.java

        private static final String S2C_SEAL_CONSTANT = "session key to server-to-client sealing key magic constant";
    
        private static final String C2S_SIGN_CONSTANT = "session key to client-to-server signing key magic constant";
        private static final String C2S_SEAL_CONSTANT = "session key to client-to-server sealing key magic constant";
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap.go

    // remains valid for the lifetime of the process.
    type Data struct {
    	// TODO(pjw): might be better to define versions of Data
    	// for the 3 specializations
    	f    *os.File
    	Data []byte
    	// Some windows magic
    	Windows interface{}
    }
    
    // Mmap maps the given file into memory.
    // When remapping a file, pass the most recently returned Data.
    func Mmap(f *os.File, data *Data) (Data, error) {
    	return mmapFile(f, data)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 21:40:49 UTC 2024
    - 1002 bytes
    - Viewed (0)
  10. src/time/zoneinfo_read.go

    // (for example, the content of /etc/localtime on Unix systems).
    func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
    	d := dataIO{data, false}
    
    	// 4-byte magic "TZif"
    	if magic := d.read(4); string(magic) != "TZif" {
    		return nil, errBadData
    	}
    
    	// 1-byte version, then 15 bytes of padding
    	var version int
    	var p []byte
    	if p = d.read(16); len(p) != 16 {
    		return nil, errBadData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top