Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 241 for Option (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    `\"k8s.io/initial-events-end\": \"true\"` annotation. Afterwards, the watch stream will proceed as usual, sending watch events corresponding to changes (subsequent to the RV) to objects watched.\n\nWhen `sendInitialEvents` option is set, we require `resourceVersionMatch` option to also be set. The semantic of the watch request is as following: - `resourceVersionMatch` = NotOlderThan\n  is interpreted as \"data at least as new as the provided `resourceVersion`\"\n  and the bookmark event is send when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// Prefetch instruction
    		// Do prefetch arg0 address with option aux. arg0=addr, arg1=memory, aux=option.
    		{name: "PRFM", argLength: 2, aux: "Int64", reg: prefreg, asm: "PRFM", hasSideEffects: true},
    
    		// Publication barrier
    		{name: "DMB", argLength: 1, aux: "Int64", asm: "DMB", hasSideEffects: true}, // Do data barrier. arg0=memory, aux=option.
    	}
    
    	blocks := []blockData{
    		{name: "EQ", controls: 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ppc64/asm.go

    // _restvr_m (14<=n<=31, 20<=m<=31). Redirect them to runtime.elf_restgpr0+(n-14)*4,
    // runtime.elf_restvr+(m-20)*8, and similar.
    //
    // These functions are defined in the ELFv2 ABI (generated when using gcc -Os option) to save and
    // restore callee-saved registers (as defined in the PPC64 ELF ABIs) from registers n or m to 31 of
    // the named type. R12 and R0 are sometimes used in exceptional ways described in the ABI.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

    - The kube-proxy nodeportAddresses / --nodeport-addresses option now
      accepts the value "primary", meaning to only listen for NodePort connections
      on the node's primary IPv4 and/or IPv6 address (according to the Node object).
      This is strongly recommended, if you were not previously using
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Afterwards, the watch stream will proceed as usual, sending watch events
    	// corresponding to changes (subsequent to the RV) to objects watched.
    	//
    	// When `sendInitialEvents` option is set, we require `resourceVersionMatch`
    	// option to also be set. The semantic of the watch request is as following:
    	// - `resourceVersionMatch` = NotOlderThan
    	//   is interpreted as "data at least as new as the provided `resourceVersion`"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/lib.go

    	// GCC says "unrecognized command line option ‘-no-pie’"
    	// clang says "unknown argument: '-no-pie'"
    	return err == nil && !bytes.Contains(out, []byte("unrecognized")) && !bytes.Contains(out, []byte("unknown"))
    }
    
    // trimLinkerArgv returns a new copy of argv that does not include flags
    // that are not relevant for testing whether some linker option works.
    func trimLinkerArgv(argv []string) []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    	// Webhooks that specify this option *must* be idempotent, and hence able to process objects they previously admitted.
    	// Note:
    	// * the number of additional invocations is not guaranteed to be exactly one.
    	// * if additional invocations result in further modifications to the object, webhooks are not guaranteed to be invoked again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

                      “roll up” the /32s into a larger prefix. Defaults to 32. Works for
                      IPv4 addresses.
                    format: int32
                    minimum: 1
                    type: integer
                  aggregationLengthV6:
                    default: 128
                    description: The aggregation-length advertisement option lets you
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    		}
    		return saveConfig(ctx, api, getJobReportPath(job), buf)
    	}
    	ri.mu.Unlock()
    	return nil
    }
    
    // Note: to be used only with batch jobs that affect multiple versions through
    // a single action. e.g batch-expire has an option to expire all versions of an
    // object which matches the given filters.
    func (ri *batchJobInfo) trackMultipleObjectVersions(bucket string, info ObjectInfo, success bool) {
    	if success {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Instead, you can:
    
    - set the test framework before configuring options
    - migrate to the <<jvm_test_suite_plugin#jvm_test_suite_plugin,JVM Test Suite Plugin>>
    ```
    test {
       // select test framework before configuring options
       useJUnitPlatform()
       options {
       }
    }
    ```
    
    Additionally, setting the test framework multiple times to the _same_ framework now accumulates any options that might be set on the framework.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top