Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 528 for Extender (0.28 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //   which uses the POSIX extended regex syntax.
    //
    //   On other platforms (e.g. Windows), we only support a simple regex
    //   syntax implemented as part of Google Test.  This limited
    //   implementation should be enough most of the time when writing
    //   death tests; though it lacks many features you can find in PCRE
    //   or POSIX extended regex syntax.  For example, we don't support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/gateway-api-crd.yaml

    
                                        - Extended: Filter types and their corresponding configuration defined by
                                          "Support: Extended" in this package, e.g. "RequestMirror". Implementers
                                          are encouraged to support extended filters.
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			nodeInfo:                  framework.NewNodeInfo(newResourcePod(framework.Resource{})),
    			name:                      "extended resource fits",
    			wantInsufficientResources: []InsufficientResource{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema_conversion_utils.h

    namespace tflite {
    
    int8_t ConvertBuiltinCodeToDeprecatedBuiltinCode(
        const BuiltinOperator builtin_code);
    
    // The following methods are for backward compatibility for the early version
    // three, which does not have an extended builtin code.
    flatbuffers::Offset<OperatorCode> CreateOperatorCode(
        flatbuffers::FlatBufferBuilder &_fbb,
        BuiltinOperator builtin_code = BuiltinOperator_ADD,
        flatbuffers::Offset<flatbuffers::String> custom_code = 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/toolchain/management/ToolchainManagement.java

    package org.gradle.api.toolchain.management;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.plugins.ExtensionAware;
    
    /**
     * Configures how toolchains are resolved.
     * <p>
     * <code>ToolchainManagement</code> is extended by plugins to support different ecosystems.
     * <p>
     * One option available at present is using the <code>jvm-toolchain-management</code> plugin, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 22 12:20:48 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. src/unicode/utf16/utf16.go

    			n += 2
    		default:
    			a[n] = uint16(replacementChar)
    			n++
    		}
    	}
    	return a[:n]
    }
    
    // AppendRune appends the UTF-16 encoding of the Unicode code point r
    // to the end of p and returns the extended buffer. If the rune is not
    // a valid Unicode code point, it appends the encoding of U+FFFD.
    func AppendRune(a []uint16, r rune) []uint16 {
    	// This function is inlineable for fast handling of ASCII.
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/strconv/quote.go

    // [IsPrint].
    func Quote(s string) string {
    	return quoteWith(s, '"', false, false)
    }
    
    // AppendQuote appends a double-quoted Go string literal representing s,
    // as generated by [Quote], to dst and returns the extended buffer.
    func AppendQuote(dst []byte, s string) []byte {
    	return appendQuotedWith(dst, s, '"', false, false)
    }
    
    // QuoteToASCII returns a double-quoted Go string literal representing s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_test.go

    		b.Run(name, func(b *testing.B) {
    			for _, n := range gcmBenchmarks {
    				n := n
    				if t.keyLength == 16 && n.name == "gcm-extended-nonce" {
    					continue // gcm-extended-nonce requires 32 byte keys
    				}
    				b.Run(n.name, func(b *testing.B) {
    					b.ReportAllocs()
    					benchmarkGCMRead(b, n.f, t.keyLength, t.valueLength, t.expectStale)
    				})
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  9. ci/official/containers/linux_arm64/devel.usertools/rename_and_verify_wheels.sh

      time python3 -m auditwheel repair --plat manylinux2014_aarch64 "$wheel" --wheel-dir /tf/pkg 2>&1 | tee check.txt
    
      # We don't need the original wheel if it was renamed
      new_wheel=$(grep --extended-regexp --only-matching '/tf/pkg/\S+.whl' check.txt)
      if [[ "$new_wheel" != "$wheel" ]]; then
        rm "$wheel"
        wheel="$new_wheel"
      fi
    
      TF_WHEEL="$wheel" bats /usertools/wheel_verification.bats --timing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/NativeToolChainPluginTest.groovy

            }
        }
    
        void addDefaultToolchain() {
            registry.mutate(NativeToolChainRegistryInternal) {
                it.addDefaultToolChains()
            }
        }
    
        def "tool chain is extended"() {
            when:
            register()
    
            then:
            with(toolchain) {
                it instanceof ExtensionAware
                it.ext instanceof ExtraPropertiesExtension
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top