Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,183 for emptypb (0.16 sec)

  1. tensorflow/cc/framework/scope.cc

        const string& composite_op_name) const {
      if (impl()->op_name_.empty() && composite_op_name.empty()) {
        UpdateStatus(errors::InvalidArgument(
            "Cannot create composite op scopes with empty name"));
        return {*this, *this};
      }
      if (!impl()->single_use_scope()) {
        Scope child = NewSubScope(impl()->op_name_.empty() ? composite_op_name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaPlatformModule.groovy

            assert mavenModule.parsedModuleMetadata.variants*.name as Set == ['apiElements', 'runtimeElements'] as Set
            assert mavenModule.parsedModuleMetadata.variant('apiElements').files.empty
            assert mavenModule.parsedModuleMetadata.variant('runtimeElements').files.empty
    
            // Verify POM particulars
            assert mavenModule.parsedPom.packaging == 'pom'
        }
    
        void assertNoDependencies() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperLoggingIntegrationTest.groovy

            then:
            outputContains("Could not set executable permissions")
        }
    
        def "wrapper prints error and fails build if downloaded zip is empty"() {
            given: "empty distribution"
            TestFile tempUnzipDir = temporaryFolder.createDir("empty-distribution")
            TestFile malformedDistZip = new TestFile(tempUnzipDir, "gradle-${distribution.version.version}-bin.zip") << ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

                final SAXParser parser = factory.newSAXParser();
                parser.setProperty(XMLConstants.ACCESS_EXTERNAL_DTD, StringUtil.EMPTY);
                parser.setProperty(XMLConstants.ACCESS_EXTERNAL_SCHEMA, StringUtil.EMPTY);
                parser.parse(is, this);
            } catch (final Exception e) {
                throw new GsaConfigException("Failed to parse XML file.", e);
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/RangeSet.java

       */
      @CheckForNull
      Range<C> rangeContaining(C value);
    
      /**
       * Returns {@code true} if there exists a non-empty range enclosed by both a member range in this
       * range set and the specified range. This is equivalent to calling {@code
       * subRangeSet(otherRange)} and testing whether the resulting range set is non-empty.
       *
       * @since 20.0
       */
      boolean intersects(Range<C> otherRange);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/match/match.go

    		// change from: onMatch -> map (empty with fallback) to onMatch -> fallback
    		// that fallback may be an empty map, so we re-queue onMatch in case it still needs fixing
    		onMatch.OnMatch = fallback.OnMatch
    		return []*matcher.Matcher_OnMatch{onMatch} // the inner mapper is gone
    	}
    
    	// envoy will nack this eventually
    	log.Warnf("empty mapper %v with no fallback", innerMapper.Matcher)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

                ClassPath classpath = ClassPath.EMPTY;
                classpath = classpath.plus(moduleRegistry.getModule("gradle-scala").getImplementationClasspath());
                classpath = addJavaCompilerModules(classpath);
                return classpath;
            }
            if (name.equals("JAVA-COMPILER")) {
                return addJavaCompilerModules(ClassPath.EMPTY);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. cmd/object-api-listobjects_test.go

    		// Test listing an empty directory in recursive mode (62)
    		{"test-bucket-empty-dir", "", "", "", 10, resultCases[31], nil, true},
    		// Test listing an empty directory in a non recursive mode (63)
    		{"test-bucket-empty-dir", "", "", SlashSeparator, 10, resultCases[32], nil, true},
    		// Test listing a directory which contains an empty directory (64)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheOperationFixtures.groovy

            def operations = getLocalStoreOperationsForTask(taskPath)
            assert !operations.empty && operations[0].result["stored"] == true
        }
    
        void assertNotStoredToLocalCacheForTask(String taskPath) {
            def operations = getLocalStoreOperationsForTask(taskPath)
            assert operations.empty
        }
    
        void assertStoredToRemoteCacheForTask(String taskPath) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

            v1.addDependency("g1", "m1", v("v1"), [], null, ImmutableAttributes.EMPTY, [], false, null)
            v1.addDependency("g2", "m2", v("v2"), [], "v2 is tested", ImmutableAttributes.EMPTY, [], true, null)
            def v2 = metadata.addVariant("runtime", attributes(usage: "runtime"))
            v2.addDependency("g1", "m1", v("v1"), [], null, ImmutableAttributes.EMPTY, [], false, null)
    
            expect:
            metadata.variants.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top