Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 713 for Embeddeds (0.12 sec)

  1. tensorflow/compiler/aot/embedded_protocol_buffers.h

    #include "absl/types/span.h"
    #include "xla/statusor.h"
    #include "tensorflow/core/platform/protobuf.h"
    
    namespace tensorflow {
    namespace tfcompile {
    using absl::StatusOr;
    
    // Represents a set of protocol buffers embedded into an object file and
    // describes how to access them at runtime.
    struct EmbeddedProtocolBuffers {
      // Each instance CPPShim describes how to generate C++ code to instantiate a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 10 18:19:50 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

            new TestKeyStore(rootDir, keyStoreType, trustStoreType)
        }
    
        /*
         clientStore/serverStore only contains self-signed certificates for embedded HTTPS server.
         To make the client work with both embedded HTTPS server and real-world HTTPS server (e.g. Maven Central),
         we need to merge JDK's cacerts into the custom truststore via:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/go/doc/reader.go

    	return &newF
    }
    
    // collectEmbeddedMethods collects the embedded methods of typ in mset.
    func (r *reader) collectEmbeddedMethods(mset methodSet, typ *namedType, recvTypeName string, embeddedIsPtr bool, level int, visited embeddedSet) {
    	visited[typ] = true
    	for embedded, isPtr := range typ.embedded {
    		// Once an embedded type is embedded as a pointer type
    		// all embedded types in those types are treated like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/README.md

    Having tests here breaks Gradle's ability to instrument plugins defined in this subproject and their dependencies when embedded runner is used.
    Instrumenting the plugins is important to properly test configuration caching and bytecode upgrades, without it the behavior of the embedded runner doesn't match the normal Gradle execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:41:55 UTC 2023
    - 770 bytes
    - Viewed (0)
  5. src/cmd/doc/doc_test.go

    			`ExportedEmbeddedType.*Comment on line with exported embedded field`,
    			`\*ExportedEmbeddedType.*Comment on line with exported embedded \*field`,
    			`\*qualified.ExportedEmbeddedType.*Comment on line with exported embedded \*selector.field`,
    			`unexportedType.*Comment on line with unexported embedded field`,
    			`\*unexportedType.*Comment on line with unexported embedded \*field`,
    			`io.Reader.*Comment on line with embedded Reader`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/dsl/KotlinDslPluginTest.kt

                        // then:
                        require("Plugin Using Embedded Kotlin " in result.output)
                    }
                }
    
                """
            )
    
            assertThat(
                outputOf("test", "-i"),
                containsString("Plugin Using Embedded Kotlin ")
            )
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. src/go/types/object.go

    // For embedded fields, the name is the unqualified type name
    // under which the field is accessible.
    func NewField(pos token.Pos, pkg *Package, name string, typ Type, embedded bool) *Var {
    	return &Var{object: object{nil, pos, pkg, name, typ, 0, colorFor(typ), nopos}, embedded: embedded, isField: true}
    }
    
    // Anonymous reports whether the variable is an embedded field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InetAddresses.java

          return false;
        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPriorityIntegrationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * For forking a daemon process in embedded mode:
     * The command line length is already close to the limit of what Windows can handle.
     * The few extra arguments that the priority change requires seem to push it over the edge.
     * Therefore, we do not run these tests embedded on Windows.
     **/
    @Requires(IntegTestPreconditions.NotEmbeddedExecutorOrNotWindows)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/InetAddresses.java

          return false;
        }
    
        return true;
      }
    
      /**
       * Returns the IPv4 address embedded in an IPv4 compatible address.
       *
       * @param ip {@link Inet6Address} to be examined for an embedded IPv4 address
       * @return {@link Inet4Address} of the embedded IPv4 address
       * @throws IllegalArgumentException if the argument is not a valid IPv4 compatible address
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top