Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 180 for METHOD (0.26 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Add the` WatchList` method to the `rest client` in `client-go`. When used, it establishes a stream to obtain a consistent snapshot of data from the server. This method is meant to be used by the generated client. ([#122657](https://github.com/kubernetes/kubernetes/pull/122657), [@p0lyn0mial](https://github.com/p0lyn0mial)) [SIG API Machinery]...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    	version uint16 // protocol version
    	cipher  any    // cipher algorithm
    	mac     hash.Hash
    	seq     [8]byte // 64-bit sequence number
    
    	scratchBuf [13]byte // to avoid allocs; interface method args escape
    
    	nextCipher any       // next encryption state
    	nextMac    hash.Hash // next MAC algorithm
    
    	level         QUICEncryptionLevel // current QUIC encryption level
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

      // These flags are only used for testing purpose.
      Option<QuantMethod> quantization_method_{
          *this, "quantization-method",
          llvm::cl::init(tensorflow::quantization::QuantizationMethod::
                             METHOD_STATIC_RANGE_INT8),
          llvm::cl::desc("Choose quantization method."),
          llvm::cl::values(
              clEnumValN(tensorflow::quantization::QuantizationMethod::
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .suite_operators.c
    ----
    include::{snippetsPath}/native-binaries/cunit/groovy/src/operatorsTest/c/suite_operators.c[]
    ----
    
    NOTE: Due to this mechanism, your CUnit sources may not contain a `main` method since this will clash with the method provided by Gradle.
    
    [[sec:building_cunit_executables]]
    === Building CUnit executables
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate.toString();
          }
        }
    
        // Serialization invokes writeObject only when it's private.
        // The SynchronizedObject subclasses don't need a writeObject method since
        // they don't contain any non-transient member variables, while the
        // following writeObject() handles the SynchronizedObject members.
    
        @GwtIncompatible // java.io.ObjectOutputStream
        @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Synchronized.java

          synchronized (mutex) {
            return delegate.toString();
          }
        }
    
        // Serialization invokes writeObject only when it's private.
        // The SynchronizedObject subclasses don't need a writeObject method since
        // they don't contain any non-transient member variables, while the
        // following writeObject() handles the SynchronizedObject members.
    
        @GwtIncompatible // java.io.ObjectOutputStream
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  7. src/go/printer/nodes.go

    					}
    					p.expr(x)
    				}
    				if len(f.Names) > 0 {
    					p.print(blank)
    				}
    				p.expr(f.Type)
    			} else { // interface
    				if len(f.Names) > 0 {
    					name := f.Names[0] // method name
    					p.expr(name)
    					p.signature(f.Type.(*ast.FuncType)) // don't print "func"
    				} else {
    					// embedded interface
    					p.expr(f.Type)
    				}
    			}
    			p.print(blank)
    			p.setPos(rbrace)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				overrideCheck(&opt)
    				src.CallOrFail(t, opt)
    			})
    			t.NewSubTest("explicit deny").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    				opt.HTTP.Path = "/explicit-deny"
    				opt.HTTP.Method = http.MethodPost
    				opt.Check = CheckDeny
    				overrideCheck(&opt)
    				src.CallOrFail(t, opt)
    			})
    			t.NewSubTest("wildcard allow").Run(func(t framework.TestContext) {
    				opt := opt.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            outputContains "Found plugin: 'com.acme.greeter2:{require 1.0.0; prefer 1.1.0; reject 1.0.5}'."
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17874")
        def "supports version catalogs in force method of resolutionStrategy"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs {
                        libs {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  10. src/html/template/escape_test.go

    		},
    		{
    			// It is ambiguous whether 1.5 should be 1\.5 or 1.5.
    			// Either `var x = 1/- 1.5 /i.test(x)`
    			// where `i.test(x)` is a method call of reference i,
    			// or `/-1\.5/i.test(x)` which is a method call on a
    			// case insensitive regular expression.
    			`<script>{{if false}}var x = 1{{end}}/-{{"1.5"}}/i.test(x)</script>`,
    			`'/' could start a division or regexp: "/-"`,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
Back to top