Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 106 for portnet (0.17 sec)

  1. docs/en/overrides/main.html

          </a>
        </div>
        <div class="item">
          <a title="Deploy FastAPI on AWS with a few clicks" style="display: block; position: relative;" href="https://www.porter.run" target="_blank">
            <span class="sponsor-badge">sponsor</span>
            <img class="sponsor-image" src="/img/sponsors/porter-banner.png" />
          </a>
        </div>
        <div class="item">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/RunnablesTest.java

     */
    
    package com.google.common.util.concurrent;
    
    import com.google.common.annotations.GwtCompatible;
    import junit.framework.TestCase;
    
    /**
     * Unit tests for {@link Runnables}.
     *
     * @author Olivier Pernet
     */
    @GwtCompatible
    public class RunnablesTest extends TestCase {
      public void testDoNothingRunnableIsSingleton() {
        assertSame(Runnables.doNothing(), Runnables.doNothing());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 986 bytes
    - Viewed (0)
  3. pkg/util/shellescape/quote.go

    // limitations under the License.
    
    package shellescape
    
    import (
    	"regexp"
    	"strings"
    )
    
    var unsafeValue = regexp.MustCompile(`[^\\w@%+=:,./-]`)
    
    func Quote(s string) string {
    	// ported from https://github.com/chrissimpkins/shellescape/blob/master/lib/shellescape/main.py
    	if len(s) == 0 {
    		return "''"
    	}
    
    	if unsafeValue.MatchString(s) {
    		return "'" + strings.ReplaceAll(s, "'", "'\"'\"'") + "'"
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 07 20:37:19 UTC 2020
    - 968 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Unmanaged.java

     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Incubating
    public @interface Unmanaged {
        // Note: this may be a temporary measure while existing infrastructure is being ported to managed model elements
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/README.md

    # C++ gradients
    
    Gradients are currently being ported from
    [python](https://github.com/tensorflow/tensorflow/tree/master/tensorflow/python/ops)
    to C++ (in this directory).
    
    Contributions are welcome and much appreciated; please follow the instructions
    below.
    
    1.  Create the op gradient function in `foo_grad.cc` corresponding to the
        `foo_grad.py` file where the op originated (i.e. `array_grad.py` op
        gradients should be written in `array_grad.cc`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 29 19:12:55 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/validation/validation.go

    			t, ok := p["targetPort"].(float64)
    			if !ok {
    				continue
    			}
    			tp = int(t)
    		}
    
    		rport, ok := p["port"].(float64)
    		if !ok {
    			continue
    		}
    		portnum := int(rport)
    		if tp == 0 && portnum > 1024 {
    			// Target port defaults to port. If its >1024, it is safe.
    			continue
    		}
    		if tp < 1024 {
    			// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 20:02:28 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java

                    synonymMap = null;
                    return;
                }
    
                SynonymMap.Builder parser = null;
    
                if ("wordnet".equalsIgnoreCase(settings.get("format"))) {
                    parser = new WordnetSynonymParser(true, expand, analyzer);
                    ((WordnetSynonymParser) parser).parse(rulesReader);
                } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/utils/string_utils.cc

      }
    
      // Set num of string
      //
      // NOTE: The string buffer is accessed here as if it's native endian (instead
      // of small endian, as documented in the header). This will protentially break
      // when TFLite is ported to big endian platforms.
      // TODO(b/165919229): This code will need changing if/when we port to a
      // big-endian platform.
      memcpy(*buffer, &num_strings, sizeof(int32_t));
    
      // Set offset of strings.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/grpcgen/grpcecho_test.go

    //
    //	meta:
    //	  name: echo-{generated portnum}-{server.version}
    //	  namespace: {server.namespace or "default"}
    //	  labels: {"app": "grpc", "version": "{server.version}"}
    //	spec:
    //	  address: {grpcEchoHost}
    //	  ports:
    //	    grpc: {generated portnum}
    func newConfigGenTest(t *testing.T, discoveryOpts xds.FakeOptions, servers ...echoCfg) *configGenTest {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller.go

    		} else {
    			for i := range service.Spec.Ports {
    				servicePort := &service.Spec.Ports[i]
    				portNum, err := podutil.FindPort(pod, servicePort)
    				if err != nil {
    					logger.V(4).Info("Failed to find port for service", "service", klog.KObj(service), "error", err)
    					continue
    				}
    				epp := endpointPortFromServicePort(servicePort, portNum)
    
    				var readyEps, notReadyEps int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top