Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,115 for Size (0.04 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      ArrayRef<int64_t> shape_y1 =
          shape_lhs.drop_front(shape_b.size()).drop_back(shape_c.size());
    
      // Check %before shape, and extract Y2 from it.
      ArrayRef<int64_t> shape_before = reshape_before.getType().getShape();
      if (shape_before.take_front(shape_b.size()) != shape_b ||
          shape_before.take_back(shape_c.size()) != shape_c) {
        return failure();
      }
      ArrayRef<int64_t> shape_y2 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/dom_test.go

    				Valu("a", OpConstBool, types.Types[types.TBOOL], 1, nil),
    				If("p", blockn(i+1), blockn(size))))
    		}
    	}
    
    	blocs = append(blocs,
    		Bloc(blockn(size), Goto("exit")),
    		Bloc("exit", Exit("mem")),
    	)
    
    	return blocs
    }
    
    // genMaxPred maximizes the size of the 'exit' predecessor list.
    func genMaxPred(size int) []bloc {
    	var blocs []bloc
    	blocs = append(blocs,
    		Bloc("entry",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

            def extractedAnn = api.extractAndLoadApiClassFrom(annClazz)
            def extractedAnnotations = extractedClass.annotations
    
            then:
            annotations.size() == 1
            annotations[0].annotationType().name == 'Ann'
            extractedAnnotations.size() == 1
            extractedAnnotations[0].annotationType() == extractedAnn
        }
    
        void "annotations on method are retained"() {
            given:
            def api = toApi([
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            }
    
            protected IndexOutOfBoundsException outOfBounds(int index) {
                return new IndexOutOfBoundsException("Index: " + index + ", Size: " + size());
            }
    
            private class SubList extends AbstractImmutableList<E> {
                private final int fromIndex;
                private final int toIndex;
    
                private SubList(int fromIndex, int toIndex) {
                    this.fromIndex = fromIndex;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. cmd/encryption-v1.go

    		if err != nil {
    			err = errObjectTampered // assign correct error type
    		}
    		return int64(size), err
    	}
    
    	var size int64
    	for _, part := range o.Parts {
    		partSize, err := sio.DecryptedSize(uint64(part.Size))
    		if err != nil {
    			return 0, errObjectTampered
    		}
    		size += int64(partSize)
    	}
    	return size, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. .teamcity/src/test/kotlin/PromotionProjectTests.kt

        @Test
        fun `promotion project has expected build types for master branch`() {
            val model = setupModelFor("master")
    
            assertEquals("Promotion", model.name)
            assertEquals(10, model.buildTypes.size)
            assertEquals(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

                info.@revision == "my-version"
                ******@****.***y()
                ******@****.***y()
                configurations.size() == 1
                configurations.conf.isEmpty()
                publications.size() == 1
                publications.artifacts.isEmpty()
                dependencies.size() == 1
                dependencies.dependency.isEmpty()
            }
        }
    
        def "encodes coordinates for XML and unicode"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. cmd/bucket-stats.go

    			N:     l.Totals[i].N + o.Totals[i].N,
    			Size:  l.Totals[i].Size + o.Totals[i].Size,
    		}
    	}
    	return merged
    }
    
    // Add  a new duration data
    func (l *ReplicationLastHour) addsize(sz int64) {
    	min := time.Now().Unix() / 60
    	l.forwardTo(min)
    	winIdx := min % 60
    	l.Totals[winIdx].merge(AccElem{Total: min, Size: sz, N: 1})
    	l.LastMin = min
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskCreationBuildOperationIntegrationTest.groovy

            with(realize) {
                progress.size() == 1
                with(progress[0]) {
                    detailsClassName == LogEvent.name
                    details.message.startsWith("create")
                }
    
                children.size() == 2
                with(children[0]) {
                    progress.size() == 1
                    progress[0].detailsClassName == LogEvent.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/TestFailureProgressEventCrossVersionTest.groovy

            // Extract and assert the wrapper failure
            collector.failures.size() == 1
            collector.failures[0] instanceof TestAssertionFailure
            def failure = collector.failures[0] as TestAssertionFailure
            failure.message == "This exception wraps an assertion error"
    
            // Extract and assert the wrapped failure
            failure.causes.size() == 1
            failure.causes[0] instanceof TestAssertionFailure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 10 17:52:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top