Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 172 for effects (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Now the plugins are always applied in the same order they are declared in the `plugins` block which in rare cases might change behavior of existing builds.
    
    ==== Effects of exclusion on substituted dependencies in dependency resolution
    
    Prior to this version, a dependency substitution target could not be excluded from a dependency graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/load.go

    			// set of modules to add to the graph, but adding those modules had no
    			// effect — either they were already in the graph, or updateRoots did not
    			// add them as requested.
    			panic(fmt.Sprintf("internal error: adding %v to module graph had no effect on root requirements (%v)", toAdd, rs.rootModules))
    		}
    		ld.requirements = rs
    	}
    	ld.exitIfErrors(ctx)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    An op that shuts down the TPU system.
      }];
    
      let arguments = (ins);
      let results = (outs
        TF_BoolTensor:$success
      );
    }
    
    // Internal op for testing value-based side-effects for non-resource values.
    // TODO(mgester) We should have an extension of TF dialect only for testing so
    // TF dialect is not polluted with test ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	return status
    }
    
    // run runs the test go command, and expects it to succeed.
    func (tg *testgoData) run(args ...string) {
    	tg.t.Helper()
    	if status := tg.doRun(args); status != nil {
    		wd, _ := os.Getwd()
    		tg.t.Logf("go %v failed unexpectedly in %s: %v", args, wd, status)
    		tg.t.FailNow()
    	}
    }
    
    // runFail runs the test go command, and expects it to fail.
    func (tg *testgoData) runFail(args ...string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. docs/bucket/notifications/README.md

    index*       (string)             Elasticsearch index to store/update events, index is auto-created
    format*      (namespace*|access)  'namespace' reflects current bucket/object list and 'access' reflects a journal of object operations, defaults to 'namespace'
    queue_dir    (path)               staging dir for undelivered messages e.g. '/home/events'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	exportContentStrings := map[string]string{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    well.
    
    What this means for build authors is simple: you need to tell Gradle which task properties are inputs and which are outputs. If a task property affects the output, be sure to register it as an input, otherwise the task will be considered up to date when it’s not. Conversely, don’t register properties as inputs if they don’t affect the output, otherwise the task will potentially execute when it doesn’t need to. Also be careful of non-deterministic tasks that may generate different output...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. fastapi/param_functions.py

                It will affect the generated OpenAPI (e.g. visible at `/docs`).
                """
            ),
        ] = None,
        include_in_schema: Annotated[
            bool,
            Doc(
                """
                To include (or not) this parameter field in the generated OpenAPI.
                You probably don't need it, but it's available.
    
                This affects the generated OpenAPI (e.g. visible at `/docs`).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  9. src/fmt/fmt_test.go

    	{"% q", '☺', `'☺'`},  // The space modifier should have no effect.
    	{"%.0q", '☺', `'☺'`}, // Specifying precision should have no effect.
    	{"%10q", '⌘', `       '⌘'`},
    	{"%+10q", '⌘', `  '\u2318'`},
    	{"%-10q", '⌘', `'⌘'       `},
    	{"%+-10q", '⌘', `'\u2318'  `},
    	{"%010q", '⌘', `0000000'⌘'`},
    	{"%+010q", '⌘', `00'\u2318'`},
    	{"%-010q", '⌘', `'⌘'       `}, // 0 has no effect when - is present.
    	{"%+-010q", '⌘', `'\u2318'  `},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	require.Equal(t, 2, numCompiles, "expect changing binding causes a recompile")
    }
    
    // Shows that a policy which is in effect will stop being in effect when removed
    func TestRemoveDefinition(t *testing.T) {
    	compiler := &fakeCompiler{}
    	matcher := &fakeMatcher{
    		DefaultMatch: true,
    	}
    
    	testContext := setupFakeTest(t, compiler, matcher)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top