Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 302 for shame (0.48 sec)

  1. src/cmd/link/internal/loader/loader.go

    // the symbol first class sym (participating in the link) or is an
    // anonymous aux or sub-symbol containing some sub-part or payload of
    // another symbol.
    func topLevelSym(sname string, skind sym.SymKind) bool {
    	if sname != "" {
    		return true
    	}
    	switch skind {
    	case sym.SDWARFFCN, sym.SDWARFABSFCN, sym.SDWARFTYPE, sym.SDWARFCONST, sym.SDWARFCUINFO, sym.SDWARFRANGE, sym.SDWARFLOC, sym.SDWARFLINES, sym.SGOFUNC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    var (
    	typepkgmu sync.Mutex // protects typepkg lookups
    	typepkg   = NewPkg("type", "type")
    )
    
    var SimType [NTYPE]Kind
    
    // Fake package for shape types (see typecheck.Shapify()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

           <version>1.12.0</version>
         </dependency>
    
         com.squareup.okio:okio:1.12.0
         ```
    
     *  New: Connection coalescing. OkHttp may reuse HTTP/2 connections across calls that share an IP
        address and HTTPS certificate, even if their domain names are different.
     *  New: MockWebServer's `RecordedRequest` exposes the requested `HttpUrl` with `getRequestUrl()`.
    
    
    ## Version 3.6.0
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    [[sec:kotlin_using_standard_api]]
    === Understanding what to do when type-safe model accessors are not available
    
    Consider the sample build script shown above that demonstrates the use of type-safe accessors.
    The following sample is exactly the same except that is uses the `apply()` method to apply the plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %conv = "tfl.conv_2d"(%input, %weight, %bias) {dilation_h_factor = 1 : i32, dilation_w_factor = 1 : i32,
        fused_activation_function = "NONE", padding = "SAME", stride_h = 2 : i32, stride_w = 2 : i32}
      : (tensor<1x224x224x3xf32>, tensor<32x3x3x3xf32>, tensor<32xf32>) -> tensor<1x112x112x32xf32>
      func.return %conv : tensor<1x112x112x32xf32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

                                                               TF_DeleteStatus);
    
      TF_Tensor* tensor_shape = Int32Tensor({37, 1});
      TF_Operation* shape = Const(tensor_shape, func_graph.get(), s.get(), "shape");
      TF_Operation* random =
          RandomUniform(shape, TF_FLOAT, func_graph.get(), s.get());
    
      TF_Output outputs[] = {{random, 0}};
      *func = TF_GraphToFunction(func_graph.get(), name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. pkg/controller/volume/persistentvolume/pv_controller.go

    					// Nothing was saved; we will fall back into the same condition
    					// in the next call to this method
    					return err
    				}
    			}
    			if err = ctrl.reclaimVolume(ctx, volume); err != nil {
    				// Release failed, we will fall back into the same condition
    				// in the next call to this method
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar_test.go

    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app5"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs20 = &config.Config{
    		Meta: config.Meta{
    			Name:      "sidecar-scope-with-same-workloadselector-label-drs-merged",
    			Namespace: "mynamespace",
    			Labels:    map[string]string{"app": "app1"},
    		},
    		Spec: &networking.Sidecar{},
    	}
    
    	configs21 = &config.Config{
    		Meta: config.Meta{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/buildlist.go

    			// pkg is a root of the package-import graph. (Generally this means that
    			// it matches a command-line argument.) We want future invocations of the
    			// 'go' command — such as 'go test' on the same package — to continue to
    			// use the same versions of its dependencies that we are using right now.
    			// So we need to bring this package's dependencies inside the pruned
    			// module graph.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  10. pkg/proxy/winkernel/proxier.go

    			hnsEndpoints = append(hnsEndpoints, *newHnsEndpoint)
    			if newHnsEndpoint.IsLocal() {
    				hnsLocalEndpoints = append(hnsLocalEndpoints, *newHnsEndpoint)
    			} else {
    				// We only share the refCounts for remote endpoints
    				ep.refCount = proxier.endPointsRefCount.getRefCount(newHnsEndpoint.hnsID)
    				*ep.refCount++
    			}
    
    			ep.hnsID = newHnsEndpoint.hnsID
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
Back to top