Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,632 for extr6 (0.11 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/certificates/v1/certificatesigningrequestspec.go

    	}
    	return b
    }
    
    // WithExtra puts the entries into the Extra field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    // If called multiple times, the entries provided by each call will be put on the Extra field,
    // overwriting an existing map entries in Extra field with the same key.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:16 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/internal/goobj/mkbuiltin.go

    func enumerateBasicTypes() []extra {
    	names := [...]string{
    		"int8", "uint8", "int16", "uint16",
    		"int32", "uint32", "int64", "uint64",
    		"float32", "float64", "complex64", "complex128",
    		"unsafe.Pointer", "uintptr", "bool", "string", "error",
    		"func(error) string"}
    	result := []extra{}
    	for _, n := range names {
    		result = append(result, extra{"type:" + n, 0})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/SourceSetDependenciesIntegrationTest.groovy

            file("src/extra/cpp/bad.cpp") << """
        FILE WILL BE IGNORED: source set dependency set only considers headers
    """
    
            buildFile << """
    apply plugin: 'cpp'
    
    model {
        components { comp ->
            extra(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib \$.components.extra.sources.cpp
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publication/DefaultIvyModuleDescriptorSpecTest.groovy

            then:
            thrown(UnsupportedOperationException)
        }
    
        def "can add extra info elements" () {
            when:
            spec.extraInfo 'http://some.namespace', 'foo', 'fooValue'
    
            then:
            spec.getExtraInfo().get('foo') == 'fooValue'
        }
    
        def "cannot add extra info elements with null values" () {
            when:
            spec.extraInfo namespace, name, 'fooValue'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. pkg/api/storage/util_test.go

    			expected := sets.New[string](tc.expected...)
    			for _, missing := range sets.List[string](expected.Difference(actual)) {
    				t.Errorf("missing: %s", missing)
    			}
    			for _, extra := range sets.List[string](actual.Difference(expected)) {
    				t.Errorf("extra: %s", extra)
    			}
    		})
    
    	}
    }
    
    func TestCSIStorageCapacityWarnings(t *testing.T) {
    	testcases := []struct {
    		name     string
    		template *storage.CSIStorageCapacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. fastapi/params.py

            deprecated: Union[deprecated, str, bool, None] = None,
            include_in_schema: bool = True,
            json_schema_extra: Union[Dict[str, Any], None] = None,
            **extra: Any,
        ):
            if example is not _Unset:
                warnings.warn(
                    "`example` has been deprecated, please use `examples` instead",
                    category=DeprecationWarning,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildlifecycle/taskCreationEvents/kotlin/build.gradle.kts

    tasks.whenTaskAdded {
        extra["srcDir"] = "src/main/java"
    }
    
    val a by tasks.registering
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/build_git_missing_tree.txt

    cd $WORK/repo
    exec git init
    exec git add go.mod main.go
    exec git commit -m 'initial commit'
    
    env GIT_COMMITTER_DATE=2024-01-30T10:53:00+08:00
    env GIT_AUTHOR_DATE=2024-01-30T10:53:00+08:00
    exec git add extra.go
    exec git commit -m 'add extra.go'
    
    # Assume the tree object from initial commit is not available (e.g. partial clone)
    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. src/internal/trace/oldtrace.go

    // descriptive error for invalid events.
    func (it *oldTraceConverter) next() (Event, error) {
    	if len(it.extra) > 0 {
    		ev := it.extra[0]
    		it.extra = it.extra[1:]
    
    		if len(it.extra) == 0 {
    			it.extra = it.extraArr[:0]
    		}
    		// Two events aren't allowed to fall on the same timestamp in the new API,
    		// but this may happen when we produce EvGoStatus events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/options/constant.go

    	// APIServerCertSANs flag sets extra Subject Alternative Names (SANs) to use for the API Server serving certificate. Can be both IP addresses and DNS names.
    	APIServerCertSANs = "apiserver-cert-extra-sans"
    
    	// APIServerExtraArgs flag sets a extra flags to pass to the API Server or override default ones in form of <flagname>=<value>.
    	APIServerExtraArgs = "apiserver-extra-args"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top