Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,327 for presync (0.27 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/internal/DefaultBinaryCollectionTest.groovy

        }
    
        def "can get by name before element is present and query after realized"() {
            def binary1 = Stub(SwiftBinary)
            binary1.name >> "test1"
    
            expect:
            def p = container.getByName("test1")
            !p.present
    
            container.add(binary1)
    
            !p.present
    
            container.realizeNow()
    
            p.present
            p.get() == binary1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  2. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/AbstractVirtualFileSystemTest.groovy

            instant.invalidated < instant.snapshottingFinished
            !vfs.findSnapshot(location).present
            !vfs.findSnapshot("${location}/some/child").present
            !vfs.findSnapshot("${location}/some/child2").present
            vfs.findSnapshot("${location}/other/child").present
            vfs.findSnapshot("${location}/other/child2").present
        }
    
        def "does not store snapshot when invalidate all happened in between"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/ProviderSpec.groovy

        }
    
        def "can map to provider that uses value if present or a default value"() {
            expect:
            def present = providerWithValue(someValue())
            def usesValue = present.orElse(someOtherValue())
            usesValue.present
            usesValue.get() == someValue()
    
            def notPresent = providerWithNoValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 06:53:07 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginCheckInIntegrationTest.groovy

            given:
            if (applied) {
                applyPlugin()
            }
    
            settingsFile << """
                println "present: " + services.get($GradleEnterprisePluginManager.name).present
            """
    
            when:
            succeeds "t"
    
            then:
            output.contains("present: ${applied}")
    
            where:
            applied << [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 08:50:27 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_update_embedding_enqueue_op_inputs.cc

    };
    
    // Extracts `_tpu_embedding_layer` attribute from TPU embedding ops and
    // clear the attribute from the operation. This ensures that future optimization
    // passes does not trigger additional logic due to presence of this attribute.
    LogicalResult ExtractEmbeddingAttribute(
        Operation* op, llvm::StringMap<Operation*>* embedding_op_map) {
      auto embedding_attr = op->getAttrOfType<StringAttr>(kTPUEmbeddingAttr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            expect:
            def mapped = provider.map(transformer)
            !mapped.present
            mapped.getOrNull() == null
            mapped.getOrElse("s2") == "s2"
    
            provider.value("abc")
            mapped.present
            mapped.get() == "[abc]"
    
            provider.value(null)
            !mapped.present
    
            provider.value("123")
            mapped.present
            mapped.get() == "[123]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/MutableGraph.java

      /**
       * Adds {@code node} if it is not already present.
       *
       * <p><b>Nodes must be unique</b>, just as {@code Map} keys must be. They must also be non-null.
       *
       * @return {@code true} if the graph was modified as a result of this call
       */
      @CanIgnoreReturnValue
      boolean addNode(N node);
    
      /**
       * Adds an edge connecting {@code nodeU} to {@code nodeV} if one is not already present.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            dirVar.get().getAsFile() == otherDir
            fileProvider.present
            fileProvider.get() == otherDir
    
            dirVar.set((File) null)
            !dirVar.present
            dirVar.getOrNull() == null
            !fileProvider.present
            fileProvider.getOrNull() == null
        }
    
        def "can create regular file property"() {
            def pathProvider = Stub(ProviderInternal)
            _ * pathProvider.get() >> { "../some-file" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

                "description": "path is matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/' and must be present when using PathType with value \"Exact\" or \"Prefix\".",
                "type": "string"
              },
              "pathType": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetRemoveTester.java

      @CollectionFeature.Require(SUPPORTS_REMOVE)
      public void testRemove_occurrences_present() {
        assertEquals(
            "multiset.remove(present, 2) didn't return the old count",
            1,
            getMultiset().remove(e0(), 2));
        assertFalse(
            "multiset contains present after multiset.remove(present, 2)",
            getMultiset().contains(e0()));
        assertEquals(0, getMultiset().count(e0()));
      }
    
      @CollectionSize.Require(SEVERAL)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top