Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 374 for STRICT (0.13 sec)

  1. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

     * limitations under the License.
     */
    
    import gradlebuild.modules.extension.ExternalModulesExtension
    
    plugins {
        id("java-library")
        id("gradlebuild.strict-compile")
    }
    
    val libs = project.the<ExternalModulesExtension>()
    
    dependencies {
        api(project(":internal-instrumentation-api"))
        implementation(project(":base-asm"))
        compileOnly(libs.asm)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. internal/config/api/api.go

    	listQuorum := env.Get(EnvAPIListQuorum, kvs.GetWithDefault(apiListQuorum, DefaultKVS))
    	switch listQuorum {
    	case "strict", "optimal", "reduced", "disk", "auto":
    	default:
    		return cfg, fmt.Errorf("invalid value %v for list_quorum: will default to 'strict'", listQuorum)
    	}
    	cfg.ListQuorum = listQuorum
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. pyproject.toml

    [[tool.mypy.overrides]]
    module = "docs_src.*"
    disallow_incomplete_defs = false
    disallow_untyped_defs = false
    disallow_untyped_calls = false
    
    [tool.pytest.ini_options]
    addopts = [
      "--strict-config",
      "--strict-markers",
      "--ignore=docs_src",
    ]
    xfail_strict = true
    junit_family = "xunit2"
    filterwarnings = [
        "error",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. gradle.properties

    systemProp.org.gradle.internal.ide.scan=true
    # If you're experimenting with changes and don't want to update the verification file right away, please change the mode to "lenient" (not "off")
    org.gradle.dependency.verification=strict
    # TD related properties
    gradle.internal.testdistribution.writeTraceFile=true
    develocity.internal.testdistribution.writeTraceFile=true
    gradle.internal.testdistribution.queryResponseTimeout=PT20S
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/BSD-2-Clause.txt

    TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/lowering_passes.td

                    "portion of the bridge. This is a logical no-op.";
    
      let description = [{
        Gathers metrics about the input MLIR to Phase 2 of the TFXLA Bridge, which
        does a strict semantic lowering from Tensorflow ops to XLA HLO.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateInputLoweringMetricsPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 19:49:04 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/build/LICENSE

    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. hack/golangci.yaml.in

    # golangci-lint is used in Kubernetes with different configurations that
    # enable an increasing amount of checks:
    # - golangci.yaml is the most permissive configuration. All existing code
    #   passed.
    # - golangci-strict.yaml adds checks that all new code in pull requests
    #   must pass.
    # - golangci-hints.yaml adds checks for code patterns where developer
    #   and reviewer may decide whether findings should get addressed before
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/encoding/xml/xml_test.go

    func TestDecodeNilToken(t *testing.T) {
    	for _, strict := range []bool{true, false} {
    		name := fmt.Sprintf("Strict=%v", strict)
    		t.Run(name, func(t *testing.T) {
    			start := StartElement{Name: Name{Local: "test"}}
    			bad := StartElement{Name: Name{Local: "bad"}}
    			d := NewTokenDecoder(&toksNil{
    				// Malformed
    				t: []Token{start, bad, start.End()},
    			})
    			d.Strict = strict
    			err := d.Decode(&struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix_test.go

    			}
    		} else {
    			wantRRs = 1
    		}
    		if !reflect.DeepEqual(err, wantErr) {
    			t.Errorf("strict=%v: got err %#v; want %#v", strict, err, wantErr)
    		}
    		a, err := p.AllAnswers()
    		if err != nil {
    			a = nil
    		}
    		if len(a) != wantRRs {
    			t.Errorf("strict=%v: got %v; want %v", strict, len(a), wantRRs)
    		}
    	}
    }
    
    // Test for a race between uninstalling the test hooks and closing a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
Back to top