Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 112 for suffixMsg (0.19 sec)

  1. plugin/pkg/admission/imagepolicy/admission.go

    const PluginName = "ImagePolicyWebhook"
    const ephemeralcontainers = "ephemeralcontainers"
    
    // AuditKeyPrefix is used as the prefix for all audit keys handled by this
    // pluggin. Some well known suffixes are listed below.
    var AuditKeyPrefix = strings.ToLower(PluginName) + ".image-policy.k8s.io/"
    
    const (
    	// ImagePolicyFailedOpenKeySuffix in an annotation indicates the image
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 06:05:06 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/util.go

    		}
    	}
    }
    
    func offConv(off int64) string {
    	if off == 0 {
    		return ""
    	}
    	return fmt.Sprintf("%+d", off)
    }
    
    // opSuffixSet is like regListSet, but for opcode suffixes.
    //
    // Unlike some other similar structures, uint8 space is not
    // divided by its own values set (because there are only 256 of them).
    // Instead, every arch may interpret/format all 8 bits as they like,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

    import okhttp3.internal.and
    import okhttp3.internal.platform.Platform
    import okio.FileSystem
    import okio.GzipSource
    import okio.Path
    import okio.Path.Companion.toPath
    import okio.buffer
    
    /**
     * A database of public suffixes provided by [publicsuffix.org][publicsuffix_org].
     *
     * [publicsuffix_org]: https://publicsuffix.org/
     */
    class PublicSuffixDatabase internal constructor(
      val path: Path = PUBLIC_SUFFIX_RESOURCE,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/unfreeze_constants.cc

      llvm::MapVector<TF::ConstOp, std::string> const_op_name_map{};
    
      // Keeps track of the number of occurrences of each synthesized name. The
      // `shared_name` of the newly created `VarHandleOp` will be generated by
      // suffixing the `"_{count}"` to the name.
      absl::flat_hash_map<std::string, int> name_counts{};
      for (auto const_op : target_const_ops) {
        OpBuilder builder{const_op};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 16 15:04:53 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/main_test.go

        env:
          # We need to turn off the XDS Auth because test certificates only have a fixed/hardcoded identity, but the identity of the actual
          # deployed test services changes on each run due to a randomly generated namespace suffixes.
          # Turning the XDS-Auth ON will result in the error messages like:
          # Unauthorized XDS: 10.1.0.159:41960 with identity [spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    }
    
    // File prefixes that are ignored by go/build anyway, and cause
    // problems with editor generated temporary files (#18931).
    var ignorePrefixes = []string{
    	".",
    	"_",
    	"#",
    }
    
    // File suffixes that use build tags introduced since Go 1.17.
    // These must not be copied into the bootstrap build directory.
    // Also ignore test files.
    var ignoreSuffixes = []string{
    	"_test.s",
    	"_test.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    For example `18.0` represents the version of the module with the coordinates `com.google:guava:18.0`.
    In practice there's no limitation to the scheme of the module version.
    Timestamps, numbers, special suffixes like `-GA` are all allowed identifiers.
    The most widely-used versioning strategy is link:https://semver.org/[semantic versioning].
    
    [[sub::terminology_platform]]
    == Platform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

     *
     *  * **Full domain name**: you may pin an exact domain name like `www.publicobject.com`. It won't
     *    match additional prefixes (`us-west.www.publicobject.com`) or suffixes (`publicobject.com`).
     *
     *  * **Any number of subdomains**: Use two asterisks to like `**.publicobject.com` to match any
     *    number of prefixes (`us-west.www.publicobject.com`, `www.publicobject.com`) including no
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    //
    // This package follows Semantic Versioning 2.0.0 (see semver.org)
    // with two exceptions. First, it requires the "v" prefix. Second, it recognizes
    // vMAJOR and vMAJOR.MINOR (with no prerelease or build suffixes)
    // as shorthands for vMAJOR.0.0 and vMAJOR.MINOR.0.
    package semver
    
    import "sort"
    
    // parsed returns the parsed form of a semantic version string.
    type parsed struct {
    	major      string
    	minor      string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/compress/lzw/reader.go

    	suffix [1 << maxWidth]uint8
    	prefix [1 << maxWidth]uint16
    
    	// output is the temporary output buffer.
    	// Literal codes are accumulated from the start of the buffer.
    	// Non-literal codes decode to a sequence of suffixes that are first
    	// written right-to-left from the end of the buffer before being copied
    	// to the start of the buffer.
    	// It is flushed when it contains >= 1<<maxWidth bytes,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:39 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top