Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 421 for excluding (0.57 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExcludeIntegrationTest.groovy

                result.assertTaskNotExecuted(":included:sub:test")
            }
        }
    
        def "excluding a task from a root project does not affect included task with same path"() {
            when:
            succeeds("build", "-x", ":sub:test")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 12:16:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-updates.md

        The examples here use `.dict()` for compatibility with Pydantic v1, but you should use `.model_dump()` instead if you can use Pydantic v2.
    
    That would generate a `dict` with only the data that was set when creating the `item` model, excluding default values.
    
    Then you can use this to generate a `dict` with only the data that was set (sent in the request), omitting default values:
    
    === "Python 3.10+"
    
        ```Python hl_lines="32"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/templates/daemonset.yaml

            {{- end }}
        spec:
          {{if .Values.cni.ambient.enabled }}hostNetwork: true{{ end }}
          nodeSelector:
            kubernetes.io/os: linux
          # Can be configured to allow for excluding istio-cni from being scheduled on specified nodes
          {{- with .Values.cni.affinity }}
          affinity:
            {{- toYaml . | nindent 8 }}
          {{- end }}
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

        fn.emitOpError("Can't have control ops in this pass.");
        signalPassFailure();
      }
    
      llvm::SmallVector<Operation *, 4> ops_with_side_effects;
    
      // We're iterating over all operations at the top block level, excluding
      // the return operation (which otherwise would be recognized as being
      // susceptible to side effects when returning a resource variable.)
      // We only need to consider functions with single-block bodies, as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. hack/golangci-hints.yaml

      exclude:
        # staticcheck: Developers tend to write in C-style with an explicit 'break' in a 'switch', so it's ok to ignore
        - ineffective break statement. Did you mean to break out of the outer loop
    
      # Excluding configuration per-path, per-linter, per-text and per-source
      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/selection.go

    // license that can be found in the LICENSE file.
    
    // This file implements Selections.
    
    package types2
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // SelectionKind describes the kind of a selector expression x.f
    // (excluding qualified identifiers).
    //
    // If x is a struct or *struct, a selector expression x.f may denote a
    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/go/types/selection.go

    // license that can be found in the LICENSE file.
    
    // This file implements Selections.
    
    package types
    
    import (
    	"bytes"
    	"fmt"
    )
    
    // SelectionKind describes the kind of a selector expression x.f
    // (excluding qualified identifiers).
    //
    // If x is a struct or *struct, a selector expression x.f may denote a
    // sequence of selection operations x.a.b.c.f. The SelectionKind
    // describes the kind of the final (explicit) operation; all the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. docs/ftp/README.md

    - File Transfer Protocol (FTP) – Defined by RFC114 originally, and replaced by RFC765 and RFC959
      unencrypted FTP communication (Not-recommended)
    
    ## Scope
    
    - All IAM Credentials are allowed access excluding rotating credentials, rotating credentials
      are not allowed to login via FTP/SFTP ports, you must use S3 API port for if you are using
      rotating credentials.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. hack/golangci.yaml.in

      exclude:
        # staticcheck: Developers tend to write in C-style with an explicit 'break' in a 'switch', so it's ok to ignore
        - ineffective break statement. Did you mean to break out of the outer loop
    
      # Excluding configuration per-path, per-linter, per-text and per-source
      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. hack/golangci-strict.yaml

      exclude:
        # staticcheck: Developers tend to write in C-style with an explicit 'break' in a 'switch', so it's ok to ignore
        - ineffective break statement. Did you mean to break out of the outer loop
    
      # Excluding configuration per-path, per-linter, per-text and per-source
      exclude-rules:
        # exclude ineffassign linter for generated files for conversion
        - path: conversion\.go
          linters:
            - ineffassign
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top