Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 94 for ALLOW (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * allow restricting subresource access ([#29988](https://github.com/kubernetes/kubernetes/pull/29988), [@deads2k](https://github.com/deads2k))
    * Add density (batch pods creation latency and resource) and resource performance tests to `test-e2e-node' ([#29764](https://github.com/kubernetes/kubernetes/pull/29764), [@coufon](https://github.com/coufon))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-ranges "0.0.0.0/0" \
          --allow "tcp:22" &
      fi
    
      # Open up TCP 3389 to allow RDP connections.
      if [[ ${NUM_WINDOWS_NODES} -gt 0 ]]; then
        if ! gcloud compute firewall-rules describe --project "${NETWORK_PROJECT}" "${NETWORK}-default-rdp" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CacheTest.kt

        server.enqueue(
          MockResponse.Builder()
            .addHeader("Allow: GET, HEAD")
            .addHeader("Last-Modified: " + formatDate(-1, TimeUnit.HOURS))
            .addHeader("Cache-Control: max-age=0")
            .body("A")
            .build(),
        )
        server.enqueue(
          MockResponse.Builder()
            .addHeader("Allow: GET, HEAD, PUT")
            .code(HttpURLConnection.HTTP_NOT_MODIFIED)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.emptyStrings.max() == 'c'": "max called on empty list",
    
    				// only allow sum on numeric types and duration
    				"['a', 'b'].sum() == 'c'": "found no matching overload for 'sum' applied to 'list(string).()", // compiler type checking error
    
    				// only allow min/max/indexOf/lastIndexOf on comparable types
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.5.md

    * Fix panic in vSphere cloud provider ([#38423](https://github.com/kubernetes/kubernetes/pull/38423), [@BaluDontu](https://github.com/BaluDontu))
    * Allow missing keys in templates by default ([#39486](https://github.com/kubernetes/kubernetes/pull/39486), [@ncdc](https://github.com/ncdc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "tf_executor::CreateTFExecutorTPUV1IslandOutliningPass()";
      let description = [{
        Extract the islands containing a TPU cluster computation into an outlined
        function in a nested module. This will allow to run the usual bridge on this
        nested module which now exhibits a more friendly "V2-like" structure.
        This is only intended for V1 compatibility mode where the bridge runs without
        feed/fetches on session create/extend.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    }
    
    StringRef BiasAddOp::GetOptimalLayout(const RuntimeDevices& devices) {
      // Keep current data format if no GPUs are available or if explicit placement
      // does not allow to use GPU for this operation.
      if (!CanUseGpuDevice(devices) || !CanUseGpuDevice(getOperation()))
        return getDataFormat();
    
      // Prefer NHWC for GPU devices.
      return "NHWC";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. fastapi/routing.py

                    This is much simpler (less smart) than `response_model_exclude_unset`
                    and `response_model_exclude_defaults`. You probably want to use one of
                    those two instead of this one, as those allow returning `None` values
                    when it makes sense.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/routing.go

    								Build(),
    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeaders(map[string]string{
    								"Access-Control-Allow-Origin":  "cors.com",
    								"Access-Control-Allow-Methods": "POST,GET",
    								"Access-Control-Allow-Headers": "X-Foo-Bar,X-Foo-Baz",
    								"Access-Control-Max-Age":       "86400",
    							})),
    					}
    				}(),
    			},
    			{
    				name: "get",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  10. fastapi/applications.py

                    This is much simpler (less smart) than `response_model_exclude_unset`
                    and `response_model_exclude_defaults`. You probably want to use one of
                    those two instead of this one, as those allow returning `None` values
                    when it makes sense.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
Back to top