Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for lastmod (0.13 sec)

  1. src/internal/trace/gc.go

    	mud *mud
    	// preciseMass is the distribution mass that must be precise
    	// before accumulation is stopped.
    	preciseMass float64
    	// lastTime and lastMU are the previous point added to the
    	// windowed mutator utilization function.
    	lastTime int64
    	lastMU   float64
    }
    
    // resetTime declares a discontinuity in the windowed mutator
    // utilization function by resetting the current time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            while (pos >= 0) {
                final int lastPos = value.indexOf("-->", pos);
                if (lastPos < 0) {
                    break;
                }
                if (pos == 0) {
                    value = " " + value.substring(lastPos + 3);
                } else {
                    value = value.substring(0, pos) + " " + value.substring(lastPos + 3);
                }
                pos = value.indexOf("<!--");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  3. src/cmd/distpack/test.go

    				log.Fatalf("unexpected source archive file: %s (generated by dist)", f.Name)
    			}
    		}
    	}
    }
    
    func testZip(a *Archive) { test("binary", a, zipRules) }
    func testMod(a *Archive) { test("module", a, modRules) }
    
    func test(kind string, a *Archive, rules []testRule) {
    	ok := true
    	have := make([]bool, len(rules))
    	for _, f := range a.Files {
    		for i, r := range rules {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 22:29:19 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/converter_gen.cc

      std::ostringstream oss;
      oss << "Create" << op_name.drop_front(4).str() << "erator";
      return oss.str();
    }
    
    static inline bool IsLstmOp(const StringRef op_name) {
      return op_name.take_back(6) == "LSTMOp";
    }
    
    static int HasOptions(const Record &def) {
      if (def.getValueAsBit("hasOptions")) {
        return 1;
      }
      if (def.getValueAsBit("hasOptions2")) {
        return 2;
      }
      return 0;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java

          try {
            UnsignedLong.fromLongBits(a).dividedBy(UnsignedLong.ZERO);
            fail("Expected ArithmeticException");
          } catch (ArithmeticException expected) {
          }
        }
      }
    
      public void testMod() {
        for (long a : TEST_LONGS) {
          for (long b : TEST_LONGS) {
            if (b != 0) {
              UnsignedLong aUnsigned = UnsignedLong.fromLongBits(a);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/encoding/xml/xml_test.go

    		}
    
    		// Check that InputOffset returned actual token.
    		switch {
    		case start < lastEnd:
    			t.Errorf("token %d: position [%d,%d) for %T is before previous token", i, start, end, have)
    		case start >= end:
    			// Special case: EndElement can be synthesized.
    			if start == end && end == lastEnd {
    				break
    			}
    			t.Errorf("token %d: position [%d,%d) for %T is empty", i, start, end, have)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeMultiset.java

          }
        } else {
          node = header.succ();
        }
        return (node == header || !range.contains(node.getElement())) ? null : node;
      }
    
      @CheckForNull
      private AvlNode<E> lastNode() {
        AvlNode<E> root = rootReference.get();
        if (root == null) {
          return null;
        }
        AvlNode<E> node;
        if (range.hasUpperBound()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    import org.junit.Assert;
                    import org.junit.Test;
    
                    public class ModTest {
                        @Test
                        public void testMod() {
                            Divisor divisor = new Divisor();
                            Assert.assertEquals(1, divisor.mod(5, 2));
                        }
                    }
                """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. src/index/suffixarray/sais.go

    			goto Same
    		}
    		{
    			// Compare actual texts.
    			n := int(n)
    			this := text[j:][:n]
    			last := text[lastPos:][:n]
    			for i := 0; i < n; i++ {
    				if this[i] != last[i] {
    					goto New
    				}
    			}
    			goto Same
    		}
    	New:
    		id++
    		lastPos = j
    		lastLen = n
    	Same:
    		sa[j/2] = int32(id)
    	}
    	return id
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  10. src/cmd/distpack/pack.go

    		"doc/**",
    		"misc/**",
    		"test/**",
    	)
    	modVers := modVersionPrefix + "-" + version + "." + goosDashGoarch
    	modArch.AddPrefix(modPath + "@" + modVers)
    	modArch.RenameGoMod()
    	modArch.Sort()
    	testMod(modArch)
    
    	// distpack returns the full path to name in the distpack directory.
    	distpack := func(name string) string {
    		return filepath.Join(goroot, "pkg/distpack", name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top