Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Dummy3 (0.13 sec)

  1. guava/src/com/google/common/collect/MapMakerInternalMap.java

      static class StrongKeyDummyValueEntry<K>
          extends AbstractStrongKeyEntry<K, Dummy, StrongKeyDummyValueEntry<K>>
          implements StrongValueEntry<K, Dummy, StrongKeyDummyValueEntry<K>> {
    
        private StrongKeyDummyValueEntry(K key, int hash) {
          super(key, hash);
        }
    
        @Override
        public final Dummy getValue() {
          return Dummy.VALUE;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

      static class StrongKeyDummyValueEntry<K>
          extends AbstractStrongKeyEntry<K, Dummy, StrongKeyDummyValueEntry<K>>
          implements StrongValueEntry<K, Dummy, StrongKeyDummyValueEntry<K>> {
    
        private StrongKeyDummyValueEntry(K key, int hash) {
          super(key, hash);
        }
    
        @Override
        public final Dummy getValue() {
          return Dummy.VALUE;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier.go

    		return fmt.Errorf("Ipvs not supported") // This is a BUG work-around
    	}
    	logger.V(5).Info("Dummy VS created", "vs", vs)
    
    	if err := ipvs.DeleteVirtualServer(&vs); err != nil {
    		logger.Error(err, "Could not delete dummy VS")
    		return err
    	}
    
    	return nil
    }
    
    // CleanupIptablesLeftovers removes all iptables rules and chains created by the Proxier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    			in:   "http://user:password@dummy.faketld/",
    			out:  `Get "http://user:***@dummy.faketld/": dummy impl`,
    		},
    		{
    			desc: "Don't Strip password from domain name",
    			in:   "http://user:******@****.***d/",
    			out:  `Get "http://user:***@password.faketld/": dummy impl`,
    		},
    		{
    			desc: "Don't Strip password from path",
    			in:   "http://user:password@dummy.faketld/password",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. <b>You are attempting to create a map that may contain a non-{@code Comparable}
       * key.</b> Proper calls will resolve to the version in {@code ImmutableSortedMap}, not this dummy
       * version.
       *
       * @throws UnsupportedOperationException always
       * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
       *     ImmutableSortedMap#of(Comparable, Object)}.</b>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	tcpinfo.Pmtu = conn.sendMSS // dummy, NWMIfRouteMtu is a candidate
    	tcpinfo.Rcv_ssthresh = conn.ssThresh
    	tcpinfo.Rtt = conn.roundTripTime
    	tcpinfo.Rttvar = conn.roundTripVar
    	tcpinfo.Snd_ssthresh = conn.ssThresh // dummy
    	tcpinfo.Snd_cwnd = conn.congestionWnd
    	tcpinfo.Advmss = conn.sendMSS        // dummy
    	tcpinfo.Reordering = 0               // dummy
    	tcpinfo.Rcv_rtt = conn.roundTripTime // dummy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

      }
    
      /**
       * Not supported. <b>You are attempting to create a map that may contain a non-{@code Comparable}
       * key.</b> Proper calls will resolve to the version in {@code ImmutableSortedMap}, not this dummy
       * version.
       *
       * @throws UnsupportedOperationException always
       * @deprecated <b>Pass a key of type {@code Comparable} to use {@link
       *     ImmutableSortedMap#of(Comparable, Object)}.</b>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          return std::make_optional(node->name());
        }
        return std::nullopt;
      };
      // Verify that the graph has well-formed control flow structure.
      std::vector<ControlFlowInfo> dummy;
      TF_RETURN_IF_ERROR(BuildControlFlowInfo(graph_.get(), &dummy));
      TF_RETURN_IF_ERROR(GraphToFunctionDef(*graph_, name, lookup, &fdef));
    
      if (VLOG_IS_ON(1)) {
        VLOG(2) << "Build function def " << name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        lookup_vals = math_ops.cast(
            table.lookup(input_vocabs_placeholder), dtypes.float32
        )
        # shape: (2, ?)
        matmul_input = array_ops_stack.stack([lookup_vals, lookup_vals])
    
        # Create a dummy weight matrix filled with ones.
        weight_row = array_ops.ones(
            shape=array_ops.shape(input_vocabs_placeholder), dtype=dtypes.float32
        )
        # shape: (?, 2)
        weight = array_ops.transpose_v2(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    			ClientCAs:    rootCAs,
    			NextProtos:   []string{"protocol1"},
    		}
    		serverConfig.Certificates[0].SignedCertificateTimestamps = [][]byte{[]byte("dummy sct 1"), []byte("dummy sct 2")}
    		serverConfig.Certificates[0].OCSPStaple = []byte("dummy ocsp")
    		test.configureServer(serverConfig, &serverCalled)
    
    		clientConfig := &Config{
    			MaxVersion:         version,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top