Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.cc

          }
        }
      }
      return best;
    }
    
    void Rematerializer::Remat(const RematSpec& remat) {
      const int num_inserted = remat.end - remat.begin;
      // Rewrite all operation indices.
      for (auto& tensor : tensors_) {
        std::for_each(std::lower_bound(tensor.operations.begin(),
                                       tensor.operations.end(), remat.insert),
                      tensor.operations.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlReaderTest.groovy

            "<keyring-format>armored</keyring-format>" | DependencyVerificationConfiguration.KeyringFormat.ARMORED
            "<keyring-format>binary</keyring-format>"  | DependencyVerificationConfiguration.KeyringFormat.BINARY
            ""                                         | null
        }
    
        def "reasonable error message when invalid invalid keyring format given"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 10:13:31 UTC 2023
    - 15.8K 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. 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)
  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. 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)
  10. 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)
Back to top