Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 100 for idea (0.14 sec)

  1. docs/en/docs/tutorial/schema-extra-example.md

        You can consider this a brief OpenAPI and JSON Schema **history lesson**. 🤓
    
    !!! warning
        These are very technical details about the standards **JSON Schema** and **OpenAPI**.
    
        If the ideas above already work for you, that might be enough, and you probably don't need these details, feel free to skip them.
    
    Before OpenAPI 3.1.0, OpenAPI used an older and modified version of **JSON Schema**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pkg/config/model.go

    		}
    	}
    
    	// gogo protobuf
    	if pb, ok := s.(gogoproto.Message); ok {
    		return gogoproto.Clone(pb)
    	}
    
    	// If we don't have a deep copy method, we will have to do some reflection magic. Its not ideal,
    	// but all Istio types have an efficient deep copy.
    	js, err := json.Marshal(s)
    	if err != nil {
    		return nil
    	}
    
    	data := reflect.New(reflect.TypeOf(s)).Interface()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		// Note: cmd/go/internal/load also errors about TestXXX and BenchmarkXXX functions with type parameters.
    		// We have currently decided to also warn before compilation/package loading. This can help users in IDEs.
    		at := tokenRange{tparams.Opening, tparams.Closing}
    		pass.ReportRangef(at, "%s has type parameters: it will not be run by go test as a %sXXX function", fn.Name.Name, prefix)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. internal/rest/client.go

    		// 403, but in situations where there is a dependency
    		// with the caller to take the client offline purpose
    		// fully it should make sure to respond with '412'
    		// instead, see cmd/storage-rest-server.go for ideas.
    		if c.HealthCheckFn != nil && resp.StatusCode == http.StatusPreconditionFailed {
    			err = fmt.Errorf("Marking %s offline temporarily; caused by PreconditionFailed with drive ID mismatch", c.url.Host)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/delta_test.go

    	// On remove, just get the removal
    	s.MemRegistry.RemoveService("test-1.default")
    	resp = ads.ExpectResponse()
    	assertResources(resp, "inbound|80||") // currently we always send the inbound stuff. Not ideal, but acceptable
    	assert.Equal(t, resp.RemovedResources, []string{"outbound|80||test-1.default"})
    
    	// Another removal should behave the same
    	s.MemRegistry.RemoveService("eds.test.svc.cluster.local")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  6. src/hash/maphash/smhasher_test.go

    			}
    		}
    	}
    	h.check(t)
    }
    
    // Make sure different seed values generate different hashes.
    func TestSmhasherSeed(t *testing.T) {
    	if unsafe.Sizeof(uintptr(0)) == 4 {
    		t.Skip("32-bit platforms don't have ideal seed-input distributions (see issue 33988)")
    	}
    	t.Parallel()
    	h := newHashSet()
    	const N = 100000
    	s := "hello"
    	for i := 0; i < N; i++ {
    		h.addS_seed(s, Seed{s: uint64(i + 1)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/requirements.txt

    gunicorn==22.0.0 \
        --hash=sha256:350679f91b24062c86e386e198a15438d53a7a8207235a78ba1b53df4c4378d9 \
        --hash=sha256:4a0b436239ff76fb33f11c07a16482c521a7e09c1ce3cc293c2330afe01bec63
        # via -r requirements.in
    idna==3.7 \
        --hash=sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc \
        --hash=sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0
        # via requests
    importlib-metadata==6.11.0 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 45.5K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/security/oauth2-jwt.md

    Using these ideas, JWT can be used for way more sophisticated scenarios.
    
    In those cases, several of those entities could have the same ID, let's say `foo` (a user `foo`, a car `foo`, and a blog post `foo`).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    Tooling models are used to provide rich IDE integration for Gradle projects, allowing IDEs to understand and work with the project's structure, dependencies, and other aspects.
    
    The `ToolingModelBuilderRegistry` interface is part of the `org.gradle.tooling.provider.model` package and is typically used in custom Gradle plugins that provide enhanced IDE support.
    
    Here's a simplified example:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/doc.go

    By implementing a common interface, checkers from a variety of sources
    can be easily selected, incorporated, and reused in a wide range of
    driver programs including command-line tools (such as vet), text editors and
    IDEs, build and test systems (such as go build, Bazel, or Buck), test
    frameworks, code review tools, code-base indexers (such as SourceGraph),
    documentation viewers (such as godoc), batch pipelines for large code
    bases, and so on.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top