Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 167 for Lives (0.07 sec)

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

    !!! check
        The `prefix`, `tags`, `responses`, and `dependencies` parameters are (as in many other cases) just a feature from **FastAPI** to help you avoid code duplication.
    
    ### Import the dependencies
    
    This code lives in the module `app.routers.items`, the file `app/routers/items.py`.
    
    And we need to get the dependency function from the module `app.dependencies`, the file `app/dependencies.py`.
    
    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. manifests/charts/istio-control/istio-discovery/templates/deployment.yaml

                    fieldPath: spec.serviceAccountName
              - name: KUBECONFIG
                value: /var/run/secrets/remote/config
              # If you explicitly told us where ztunnel lives, use that.
              # Otherwise, assume it lives in our namespace
              # Also, check for an explicit ENV override (legacy approach) and prefer that
              # if present
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 20:24:06 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

    import java.util.function.Function;
    
    /**
     * This is a Java compiler plugin, which must be loaded in the same classloader
     * as the one which loads the JDK compiler itself. For this reason this task lives
     * in its own subproject and uses as little dependencies as possible (in particular
     * it only depends on JDK types).
     *
     * It's accessed with reflection so move it with care to other packages.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/default.go

    	defaultOnce.Do(initDefaultCache)
    	return defaultCache
    }
    
    var (
    	defaultOnce  sync.Once
    	defaultCache Cache
    )
    
    // cacheREADME is a message stored in a README in the cache directory.
    // Because the cache lives outside the normal Go trees, we leave the
    // README as a courtesy to explain where it came from.
    const cacheREADME = `This directory holds cached build artifacts from the Go build system.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

          labels:
            # Label should not be selected. We will create a workload entry instead
            istio.io/test-vm: {{ $.Service }}
            istio.io/test-vm-version: {{ $subset.Version }}
            # HBONE enabled proxy lives inside the VM. Don't use CNI to redirect.
            istio.io/dataplane-mode: none
        spec:
          # Disable kube-dns, to mirror VM
          # we set policy to none and explicitly provide a set of invalid values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // Hold the last set of reads and writes that
      // will be depended on by ops with greater nesting depths.
      // For example, the last read/write with parallel_ids `{group0:branch0}`
      // lives at stack depth 1 and is depended on by ops with parallel_ids
      // of the form `{group0:branch0, ...}`.
      //
      // We track a set of reads/writes rather than a single read/write because
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/behind-a-proxy.md

    But you can also provide other alternative `servers`, for example if you want *the same* docs UI to interact with a staging and production environments.
    
    If you pass a custom list of `servers` and there's a `root_path` (because your API lives behind a proxy), **FastAPI** will insert a "server" with this `root_path` at the beginning of the list.
    
    For example:
    
    ```Python hl_lines="4-7"
    {!../../../docs_src/behind_a_proxy/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/README.md

    ### Generating
    
    Run the `:docs:releaseNotes` task to generate the release notes.
    
    ## User Manual
    
    The source for the user manual lives @ `src/docs/userguide`, and is authored in [Asciidoctor](https://asciidoctor.org).
    
    To generate the user manual for the final preview and see all changes, you normally want to run:
    
        ./gradlew stageDocs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network.go

    	if nw := gw.GetLabels()[label.TopologyNetwork.Name]; nw == "" {
    		return nil
    	}
    
    	// Gateway with istio-remote: only discover this from the config cluster
    	// this is a way to reference a gateway that lives in a place that this control plane
    	// won't have API server access. Nothing will be deployed for these Gateway resources.
    	if !n.discoverRemoteGatewayResources && gw.Spec.GatewayClassName == constants.RemoteGatewayClassName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/runtime/type.go

    		return it.PkgPath.Name()
    	}
    	return ""
    }
    
    // reflectOffs holds type offsets defined at run time by the reflect package.
    //
    // When a type is defined at run time, its *rtype data lives on the heap.
    // There are a wide range of possible addresses the heap may use, that
    // may not be representable as a 32-bit offset. Moreover the GC may
    // one day start moving heap memory, in which case there is no stable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top