Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for safety (0.89 sec)

  1. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    rwe
    
    // ryukyu : 2014-01-09 BRregistry, Inc.
    ryukyu
    
    // saarland : 2013-12-12 dotSaarland GmbH
    saarland
    
    // safe : 2014-12-18 Amazon Registry Services, Inc.
    safe
    
    // safety : 2015-01-08 Safety Registry Services, LLC.
    safety
    
    // sakura : 2014-12-18 SAKURA Internet Inc.
    sakura
    
    // sale : 2014-10-16 Dog Beach, LLC
    sale
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  2. CHANGELOG/CHANGELOG-1.5.md

      - [beta] PodDisruptionBudget has been promoted to beta, can be used to safely drain nodes while respecting application SLO's ([docs](http://kubernetes.io/docs/tasks/administer-cluster/safely-drain-node/)) ([kubernetes/features#85](https://github.com/kubernetes/enhancements/issues/85))
    - **UI**
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 136.4K bytes
    - Viewed (1)
  3. doc/go1.17_spec.html

    provides facilities for low-level programming including operations
    that violate the type system. A package using <code>unsafe</code>
    must be vetted manually for type safety and may not be portable.
    The package provides the following interface:
    </p>
    
    <pre class="grammar">
    package unsafe
    
    type ArbitraryType int  // shorthand for an arbitrary Go type; it is not a real type
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

          return fromMap.containsKey(key);
        }
    
        // safe as long as the user followed the <b>Warning</b> in the javadoc
        @SuppressWarnings("unchecked")
        @Override
        @CheckForNull
        public V2 get(@CheckForNull Object key) {
          V1 value = fromMap.get(key);
          if (value != null || fromMap.containsKey(key)) {
            // The cast is safe because of the containsKey check.
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    [],\n  strong: [],\n  u: [],\n  ul: []\n}\n\n/**\n * A pattern that recognizes a commonly useful subset of URLs that are safe.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts\n */\nconst SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi\n\n/**\n * A pattern that matches safe data URLs. Only matches image, video and audio types.\n *\n * Shoutout to Angular 7 https://github.com/angular/angular/...
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          return getDone(future);
        }
      }
    
      private static class MyException extends Exception {}
    
      // Class hierarchy for generics sanity checks
      private static class Foo {}
    
      private static class FooChild extends Foo {}
    
      private static class Bar {}
    
      private static class BarChild extends Bar {}
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                token,
            )
        }
        add(FirErrors.UNNECESSARY_SAFE_CALL) { firDiagnostic ->
            UnnecessarySafeCallImpl(
                firSymbolBuilder.typeBuilder.buildKtType(firDiagnostic.a),
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.SAFE_CALL_WILL_CHANGE_NULLABILITY) { firDiagnostic ->
            SafeCallWillChangeNullabilityImpl(
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  8. istioctl/pkg/authz/testdata/configdump.yaml

                             {
                              "filter_state": {
                               "key": "io.istio.peer_principal",
                               "string_match": {
                                "safe_regex": {
                                 "regex": ".*/ns/test/.*"
                                }
                               }
                              }
                             }
                            ]
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  9. CHANGELOG/CHANGELOG-1.4.md

          * In 1.4, either that key or this key: `pods.beta.kubernetes.io/init-containers`,can be used.
        * When you GET an object, you will see both annotation keys with the same values.
          You can safely roll back from 1.4 to 1.3, and things with init-containers
          will still work (pods, deployments, etc).
        * If you are running 1.3, only use the alpha annotation, or it may be lost when
          rolling forward.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

        Node* node = graph->graph.FindNodeId(*pos);
        // FindNodeId() returns nullptr for nodes that have been deleted.
        // We aren't currently allowing nodes to be deleted, but it is safer
        // to still check.
        if (node != nullptr) return ToOperation(node);
        *pos += 1;
      }
    
      // No more nodes.
      return nullptr;
    }
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top