Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 344 for Embeddeds (0.24 sec)

  1. docs/de/docs/newsletter.md

    # FastAPI und Freunde Newsletter
    
    <iframe data-w-type="embedded" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://xr4n4.mjt.lu/wgt/xr4n4/hj5/form?c=40a44fa4" width="100%" style="height: 0;"></iframe>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Feb 18 12:18:33 UTC 2024
    - 322 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/readwriter_test.go

    	// Creates a KubeconfigReadWriter
    	kubeconfigReadWriter := newKubeconfigReadWriter(dirKubernetes, "test", dirPKI, caName)
    
    	// Reads the certificate embedded in a kubeconfig
    	readCert, err := kubeconfigReadWriter.Read()
    	if err != nil {
    		t.Fatalf("couldn't read embedded certificate: %v", err)
    	}
    
    	// Check if the certificate read from disk is equal to the original one
    	if !cert.Equal(readCert) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-plugins/build.gradle.kts

    }
    
    testFilesCleanup.reportOnly = true
    
    pluginPublish {
        bundledGradlePlugin(
            name = "embeddedKotlin",
            shortDescription = "Embedded Kotlin Gradle Plugin",
            pluginId = "org.gradle.kotlin.embedded-kotlin",
            pluginClass = "org.gradle.kotlin.dsl.plugins.embedded.EmbeddedKotlinPlugin"
        )
    
        bundledGradlePlugin(
            name = "kotlinDsl",
            shortDescription = "Gradle Kotlin DSL Plugin",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_vendor_embed.txt

    //go:embed subdir/test/xtest/embed.txt
    var subdirXtest string
    -- a/samedir_embed.txt --
    embedded file in same directory as package
    -- a/subdir/embed.txt --
    embedded file in subdirectory of package
    -- a/subdir/test/embed.txt --
    embedded file of test in subdirectory of package
    -- a/subdir/test/xtest/embed.txt --
    embedded file of xtest in subdirectory of package
    -- broken_no_matching_files/go.mod --
    module example.com/broken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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