Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 296 for emberi (0.36 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     *
     * The following _Java Object Serialization_ features are **not** supported:
     * - the `serialPersistentFields` member to explicitly declare which fields are serializable; the member, if present, is ignored; the configuration cache considers all but `transient` fields serializable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local_test.go

    						EnvVar: v1.EnvVar{Name: "Foo", Value: "Bar"},
    					},
    				},
    			},
    		},
    	}
    	endpoint := &kubeadmapi.APIEndpoint{}
    
    	// Executes GetEtcdPodSpec
    	spec := GetEtcdPodSpec(cfg, endpoint, "", []etcdutil.Member{})
    
    	// Assert each specs refers to the right pod
    	if spec.Spec.Containers[0].Name != kubeadmconstants.Etcd {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_host_recv_device_context.h

      // This is copied rather than a reference or pointer since its lifetime
      // is not guaranteed to outlast the original object.  Object slicing is
      // not an issue here since only DeviceMemoryBase methods/members are used.
      const se::DeviceMemoryBase device_memory_base_;
      const xla::Shape shape_;
      tsl::AsyncValueRef<std::unique_ptr<se::Event>> done_event_;
    
      XlaHostRecvDeviceContext(const XlaHostRecvDeviceContext&) = delete;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

    /**
     * A phase mapping definition.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class Phase implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * The ID of this phase, e.g., <code>generate-sources</code>.
         */
        private String id;
    
        /**
         * Field executions.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/body-multiple-params.md

    Mas se você quiser que ele espere por um JSON com uma chave `item` e dentro dele os conteúdos do modelo, como ocorre ao declarar vários parâmetros de corpo, você pode usar o parâmetro especial de `Body` chamado `embed`:
    
    ```Python
    item: Item = Body(embed=True)
    ```
    
    como em:
    
    === "Python 3.10+"
    
        ```Python hl_lines="15"
        {!> ../../../docs_src/body_multiple_params/tutorial005_py310.py!}
        ```
    
    === "Python 3.8+"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/cmd/buildid/buildid.go

    	f, err := os.Open(file)
    	if err != nil {
    		log.Fatal(err)
    	}
    	matches, hash, err := buildid.FindAndHash(f, id, 0)
    	f.Close()
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	// <= go 1.7 doesn't embed the contentID or actionID, so no slash is present
    	if !strings.Contains(id, "/") {
    		log.Fatalf("%s: build ID is a legacy format...binary too old for this tool", file)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtReferenceShortener.kt

    public typealias KtReferenceShortener = KaReferenceShortener
    
    public interface KaReferenceShortenerMixIn : KaSessionMixIn {
    
        /**
         * Collects possible references to shorten. By default, it shortens a fully-qualified members to the outermost class and does not
         * shorten enum entries.  In case of KDoc shortens reference only if it is already imported.
         *
         * N.B. This API is not implemented for the FE10 implementation!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/ureader.go

    				}
    
    				embeds := make([]types.Type, iface.NumEmbeddeds())
    				for i := range embeds {
    					embeds[i] = iface.EmbeddedType(i)
    				}
    
    				newIface := types.NewInterfaceType(methods, embeds)
    				r.p.ifaces = append(r.p.ifaces, newIface)
    				underlying = newIface
    			}
    
    			named.SetUnderlying(underlying)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/runtime/runtime1.go

    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // reflect_typelinks is meant for package reflect,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gitee.com/quant1x/gox
    //   - github.com/goccy/json
    //   - github.com/modern-go/reflect2
    //   - github.com/vmware/govmomi
    //   - github.com/pinpoint-apm/pinpoint-go-agent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionFile.kt

    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    
    /**
     * Represents the Kotlin file which provides additional, generated declarations for resolution.
     *
     * All member implementations should:
     * - consider caching the results for subsequent invocations.
     * - be lightweight and not build the whole file structure inside.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top