Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Change (0.09 sec)

  1. docs/changelogs/changelog_3x.md

        upgrading OkHttp. With this change it is now a regular Java class with
        enum-like constants. Application code that uses enum methods on cipher
        suites (`ordinal()`, `name()`, etc.) will break with this change.
    
     *  Fix: `CertificatePinner` now matches canonicalized hostnames. Previously
        this was case sensitive. This change should also make it easier to configure
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

      - [Changes by Kind](#changes-by-kind)
        - [Deprecation](#deprecation)
        - [API Change](#api-change)
        - [Feature](#feature)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake)
      - [Dependencies](#dependencies)
        - [Added](#added)
        - [Changed](#changed)
        - [Removed](#removed)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // An opaque value that represents the internal version of this object that can
      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // An opaque value that represents the internal version of this object that can
      // be used by clients to determine when objects have changed. May be used for optimistic
      // concurrency, change detection, and the watch operation on a resource or set of resources.
      // Clients must treat these values as opaque and passed unmodified back to the server.
      // They may only be valid for a particular resource or set of resources.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  5. .bazelrc

    test:win_clang_xla --linkopt=/FORCE:MULTIPLE
    test:win_clang_xla --host_linkopt=/FORCE:MULTIPLE
    
    # Options to build TensorFlow 1.x or 2.x.
    # TODO(kanglan): Change v2's define to default behavior
    build:v2 --define=tf_api_version=2 --action_env=TF2_BEHAVIOR=1
    
    # Enable all targets in XLA
    build:cpu_cross --define=with_cross_compiler_support=true
    
    # Disable XLA on mobile.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // PodSecurityPolicy cluster role. No longer used anywhere.
      string psp_cluster_role = 11;
    
      // Configuration log level of istio-cni binary. By default, istio-cni sends all logs to the UDS server.
      // To see the logs, change global.logging.level to cni:debug.
      string logLevel = 12;
    
      // Configuration for the CNI Repair controller.
      CNIRepairConfig repair = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        cache.evictAll()
    
        // Create a new value in its place.
        set("k1", "bb", "bb")
        assertThat(cache.size()).isEqualTo(4)
    
        // Committing the detached editor should not change the cache's size.
        editor.commit()
        assertThat(cache.size()).isEqualTo(4)
        assertValue("k1", "bb", "bb")
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $gateway=ConvertTo_DottedDecimalIP($network+2)
      return $gateway
    }
    
    # Get pod IP range start based (the third address) on pod cidr
    # We reserve the first two in the cidr range for gateways. Start the cidr
    # range from the third so that IPAM does not allocate those IPs to pods.
    function Get_PodIP_Range_Start([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

      // CHECK: return %[[CARG0]]
      func.return %arg0 : tensor<!tf_type.resource>
    }
    
    // -----
    
    // Tests PartitionedCall op with no signature change on callee.
    
    // CHECK-LABEL: func @main
    func.func @main() -> () {
      %call = "tf.PartitionedCall"() {f = @callee, config = "", config_proto = "", executor_type = ""} : () -> tensor<i32>
      func.return
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

        result.scheme = scheme
        result.encodedUsername = encodedUsername
        result.encodedPassword = encodedPassword
        result.host = host
        // If we're set to a default port, unset it in case of a scheme change.
        result.port = if (port != defaultPort(scheme)) port else -1
        result.encodedPathSegments.clear()
        result.encodedPathSegments.addAll(encodedPathSegments)
        result.encodedQuery(encodedQuery)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top