Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 175 for NOR (0.02 sec)

  1. docs/en/docs/tutorial/bigger-applications.md

    But now you know how it works, so you can use relative imports in your own apps no matter how complex they are. 🤓
    
    ### Add some custom `tags`, `responses`, and `dependencies`
    
    We are not adding the prefix `/items` nor the `tags=["items"]` to each *path operation* because we added them to the `APIRouter`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  2. doc/godebug.md

    Go 1.22 disabled
    [`ConnectionState.ExportKeyingMaterial`](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial)
    when the connection supports neither TLS 1.3 nor Extended Master Secret
    (implemented in Go 1.21). It can be reenabled with the [`tlsunsafeekm`
    setting](/pkg/crypto/tls/#ConnectionState.ExportKeyingMaterial).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/TreeRangeMap.java

    /**
     * An implementation of {@code RangeMap} based on a {@code TreeMap}, supporting all optional
     * operations.
     *
     * <p>Like all {@code RangeMap} implementations, this supports neither null keys nor null values.
     *
     * @author Louis Wasserman
     * @since 14.0
     */
    @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
    @GwtIncompatible // NavigableMap
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/concepts.md

    * A particular program while it is **running** on the operating system.
        * This doesn't refer to the file, nor to the code, it refers **specifically** to the thing that is being **executed** and managed by the operating system.
    * Any program, any code, **can only do things** when it is being **executed**. So, when there's a **process running**.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/value.go

    	Pos src.XPos
    
    	// Use count. Each appearance in Value.Args and Block.Controls counts once.
    	Uses int32
    
    	// wasm: Value stays on the WebAssembly stack. This value will not get a "register" (WebAssembly variable)
    	// nor a slot on Go stack, and the generation of this value is delayed to its use time.
    	OnWasmStack bool
    
    	// Is this value in the per-function constant cache? If so, remove from cache before changing it or recycling it.
    	InCache bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/istio_ca.go

    		ctx, cancel := context.WithTimeout(context.Background(), time.Minute*20)
    		defer cancel()
    		// rootCertFile will be added to "ca-cert.pem".
    		// readSigningCertOnly set to false - it doesn't seem to be used in Citadel, nor do we have a way
    		// to set it only for one job.
    		caOpts, err = ca.NewSelfSignedIstioCAOptions(ctx,
    			selfSignedRootCertGracePeriodPercentile.Get(), SelfSignedCACertTTL.Get(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. pkg/proxy/healthcheck/healthcheck_test.go

    	httpFactory := newFakeHTTPServerFactory()
    	proxyChecker := &fakeProxierHealthChecker{true}
    
    	// limiting addresses to loop back. We don't want any cleverness here around getting IP for
    	// machine nor testing ipv6 || ipv4. using loop back guarantees the test will work on any machine
    	nodePortAddresses := proxyutil.NewNodePortAddresses(v1.IPv4Protocol, []string{"127.0.0.0/8"})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

        // arguments must correspond to different resources and we can assign unique
        // IDs.
        assign_unique_id_to_all(func_op.getArguments());
      }
    
      // Since this analysis is neither inter-procedural nor inter-regional,
      // each region attached to Op's within a function is analyzed independently.
      // Seed this analysis for each such region by mapping all resource arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    ----
    +
    This feature is very useful when you don't have admin rights to a continuous integration server and need to set property values that are not easily visible.
    Since you cannot use the `-P` option in that scenario nor change the system-level configuration files, the correct strategy is to change the configuration of your continuous integration build job, adding an environment variable setting that matches an expected pattern.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

                                            batch_dims_count -
                                            contracting_dims_count;
    
      // This pattern only supports concating on LHS other dims (neither batch nor
      // contracting).
      if (concat.getDimension() < batch_dims_count ||
          concat.getDimension() >= batch_dims_count + lhs_other_dims_count) {
        return rewriter.notifyMatchFailure(concat,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top