Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,481 for Fermat (0.22 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/typeregistration/BaseInstanceFactory.java

                    throw new IllegalStateException(String.format("Cannot register implementation for type '%s' because an implementation for this type was already registered by %s",
                        publicType, implementationRegistration.getSource()));
                }
                if (managedPublicType) {
                    throw new IllegalArgumentException(String.format("Cannot specify default implementation for managed type '%s'", publicType));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      virtual void ApplyRemat(const RematSpec& remat) {}
    
     protected:
      // Rematerializes the outputs of the operations [`remat.begin`, `remat.end`)
      // before operation remat.insert by copying that operation range before
      // remat.insert and updating tensor references so that any operation that can
      // will make use of the rematerialized outputs rather than the original ones.
      // `remat` must be valid (see above).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top