Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for mplacer (0.21 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    time.
    
      `I want a clean cup,' interrupted the Hatter:  `let's all move
    one place on.'
    
      He moved on as he spoke, and the Dormouse followed him:  the
    March Hare moved into the Dormouse's place, and Alice rather
    unwillingly took the place of the March Hare.  The Hatter was the
    only one who got any advantage from the change:  and Alice was a
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

        input_list.emplace_back(&inputs[i].oper->node, inputs[i].index);
      }
      desc->node_builder.Input(input_list);
    }
    
    void TF_AddControlInput(TF_OperationDescription* desc, TF_Operation* input) {
      desc->node_builder.ControlInput(&input->node);
    }
    
    void TF_ColocateWith(TF_OperationDescription* desc, TF_Operation* op) {
      desc->colocation_constraints.emplace(
    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)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    time.
    
      `I want a clean cup,' interrupted the Hatter:  `let's all move
    one place on.'
    
      He moved on as he spoke, and the Dormouse followed him:  the
    March Hare moved into the Dormouse's place, and Alice rather
    unwillingly took the place of the March Hare.  The Hatter was the
    only one who got any advantage from the change:  and Alice was a
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                The directory where compiled application classes are placed.
                The default value is {@code target/classes}.
              </description>
              <type>String</type>
            </field>
            <field>
              <name>testOutputDirectory</name>
              <version>4.0.0+</version>
              <description>
                The directory where compiled test classes are placed.
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	go globalReplicationStats.trackEWMA()
    }
    
    type proxyResult struct {
    	Proxy bool
    	Err   error
    }
    
    // get Reader from replication target if active-active replication is in place and
    // this node returns a 404
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  6. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    boutir.com
    
    // Boxfuse : https://boxfuse.com
    // Submitted by Axel Fontaine <******@****.***>
    boxfuse.io
    
    // bplaced : https://www.bplaced.net/
    // Submitted by Miroslav Bozic <security@bplaced.net>
    square7.ch
    bplaced.com
    bplaced.de
    square7.de
    bplaced.net
    square7.net
    
    // Brendly : https://brendly.rs
    // Submitted by Dusan Radovanovic <******@****.***>
    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)
  7. src/main/webapp/js/admin/popper.min.js.map

    ${sideCapitalized}`], 10);\n  const popperBorderSide = parseFloat(css[`border${sideCapitalized}Width`], 10);\n  let sideValue =\n    center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n  // prevent arrowElement from being placed not contiguously to its popper\n  sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n  data.arrowElement = arrowElement;\n  data.offsets.arrow = {\n    [side]: Math.round(sideValue),\n    [altSide]: '', // make sure to...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  8. cmd/object-handlers.go

    		)
    		proxytgts := getProxyTargets(ctx, bucket, object, opts)
    		if !proxytgts.Empty() {
    			globalReplicationStats.incProxy(bucket, getObjectAPI, false)
    			// proxy to replication target if active-active replication is in place.
    			reader, proxy, perr = proxyGetToReplicationTarget(ctx, bucket, object, rs, r.Header, opts, proxytgts)
    			if perr != nil {
    				globalReplicationStats.incProxy(bucket, getObjectAPI, true)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Maps.java

       * use the {@code HashMap} constructor directly, taking advantage of <a
       * href="http://goo.gl/iz2Wi">"diamond" syntax</a>.
       *
       * @param map the mappings to be placed in the new map
       * @return a new {@code HashMap} initialized with the mappings from {@code map}
       */
      public static <K extends @Nullable Object, V extends @Nullable Object> HashMap<K, V> newHashMap(
    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)
  10. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        assertSame(barChild, bar);
      }
    
      /*
       * Android does not handle this stack overflow gracefully... though somehow some other
       * stack-overflow tests work. It must depend on the exact place the error occurs.
       */
      @AndroidIncompatible
      @J2ktIncompatible
      @GwtIncompatible // StackOverflowError
      public void testTransform_StackOverflow() throws Exception {
        {
          /*
    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)
Back to top