Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,667 for Fermat (0.11 sec)

  1. src/debug/dwarf/entry.go

    	type delayed struct {
    		idx int
    		off uint64
    		fmt format
    	}
    	var delay []delayed
    
    	resolveStrx := func(strBase, off uint64) string {
    		off += strBase
    		if uint64(int(off)) != off {
    			b.error("DW_FORM_strx offset out of range")
    		}
    
    		b1 := makeBuf(b.dwarf, b.format, "str_offsets", 0, b.dwarf.strOffsets)
    		b1.skip(int(off))
    		is64, _ := b.format.dwarf64()
    		if is64 {
    			off = b1.uint64()
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BTreeIndexedCacheTest.java

            Map<String, Integer> added = new LinkedHashMap<String, Integer>();
    
            for (Integer value : values) {
                String key = String.format("key_%d", value);
                cache.put(key, value);
                added.put(String.format("key_%d", value), value);
            }
    
            for (Map.Entry<String, Integer> entry : added.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/CopySpec.java

         */
        @Override
        CopySpec include(Spec<FileTreeElement> includeSpec);
    
        /**
         * {@inheritDoc}
         *
         * @see org.gradle.api.tasks.util.PatternFilterable Pattern Format
         */
        @Override
        CopySpec include(Closure includeSpec);
    
        /**
         * {@inheritDoc}
         *
         * @see org.gradle.api.tasks.util.PatternFilterable Pattern Format
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    				return nil, errors.New("must set at most one output format")
    			}
    			cmd = []string{n}
    		}
    	}
    	for n, s := range acmd {
    		if *s != "" {
    			if cmd != nil {
    				return nil, errors.New("must set at most one output format")
    			}
    			cmd = []string{n, *s}
    		}
    	}
    	return cmd, nil
    }
    
    var usageMsgHdr = `usage:
    
    Produce output in the specified format.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. internal/event/target/mysql.go

    }
    
    // Validate MySQLArgs fields
    func (m MySQLArgs) Validate() error {
    	if !m.Enable {
    		return nil
    	}
    
    	if m.Format != "" {
    		f := strings.ToLower(m.Format)
    		if f != event.NamespaceFormat && f != event.AccessFormat {
    			return fmt.Errorf("unrecognized format")
    		}
    	}
    
    	if m.Table == "" {
    		return fmt.Errorf("table unspecified")
    	}
    
    	if m.DSN != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/accesslog_test.go

    		encoding   meshconfig.MeshConfig_AccessLogEncoding
    		format     string
    		wantFormat string
    	}{
    		{
    			name:       "valid json object",
    			encoding:   meshconfig.MeshConfig_JSON,
    			format:     `{"foo": "bar"}`,
    			wantFormat: `{"foo":"bar"}`,
    		},
    		{
    			name:       "valid nested json object",
    			encoding:   meshconfig.MeshConfig_JSON,
    			format:     `{"foo": {"bar": "ha"}}`,
    			wantFormat: `{"foo":{"bar":"ha"}}`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/quantization/tensorflow/fallback_to_flex_ops.cc

    // Checks if the operation is TF FakeQuant ops.
    bool IsTfFakeQuantOp(Operation *op) {
      return llvm::isa<
          // clang-format off
          TF::FakeQuantWithMinMaxArgsOp,
          TF::FakeQuantWithMinMaxVarsOp,
          TF::FakeQuantWithMinMaxVarsPerChannelOp
          // clang-format on
          >(op);
    }
    
    // Checks if the operation is allowlisted in both modes. These ops are not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                    } else {
                        SimpleDateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");
                        format.setTimeZone(TimeZone.getTimeZone("UTC"));
                        return format.parse(matcher.group(8)).getTime();
                    }
                } catch (ParseException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

        protected static Date toDate(final String str, final Locale locale) {
            for (final DateFormat format : MultiIterator.iterable(new DateFormatIterator(locale), new PlainDateFormatIterator(str, locale))) {
                if (format == null) {
                    continue;
                }
                final Date date = toDate(str, format);
                if (date != null) {
                    return date;
                }
            }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/java/org/apache/maven/model/interpolation/AbstractModelInterpolatorTest.java

            Date secondTestDate = cal.getTime();
    
            SimpleDateFormat format = new SimpleDateFormat(MavenBuildTimestamp.DEFAULT_BUILD_TIMESTAMP_FORMAT);
            format.setTimeZone(MavenBuildTimestamp.DEFAULT_BUILD_TIME_ZONE);
            assertEquals("1976-11-11T00:16:00Z", format.format(firstTestDate));
            assertEquals("1976-11-11T23:16:00Z", format.format(secondTestDate));
        }
    
        @Test
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top