Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,866 for function_1 (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        signature {
          name: "foo3"
        }
      }
      function {
        signature {
          name: "foo4"
        }
      }
      function {
        signature {
          name: "foo5"
        }
      }
      function {
        signature {
          name: "foo6"
        }
      }
      function {
        signature {
          name: "foo7"
        }
      }
      function {
        signature {
          name: "foo8"
        }
      }
      function {
        signature {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/ConfigureLambdaHandler.kt

            lateinit var value: Any
            val lambda: Function1<Any, Unit> = { value = it }
            return ConfigureLambdaHandler.ValueCaptor(lambda, lazy { value })
        }
    
        private
        fun isConfigureLambdaType(maybeLambdaType: KType) = maybeLambdaType.isSubtypeOf(typeOf<Function1<*, Unit>>())
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.h

    // that is compatible with the given device_type. The MLIR should be in the TF
    // Executor Dialect for graph nodes and edges or TF Functional. It will convert
    // to TF Functional internally. Individual Op inside a node should be the
    // Tensorflow Dialect. The output MLIR is in the TF Functional Dialect.  The
    // input MLIR should not have infeed and outfeed ops, which are unsupported via
    // this API. Returns OkStatus if passed, otherwise an error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 14:08:41 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents/header.h

    #ifndef HEADER_${generatedId}_H
    #define HEADER_${generatedId}_H
    
    <%
    includes.each { include ->
        out.println "#include \"$include\""
    }
    %>
    
    int function_${generatedId}();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 206 bytes
    - Viewed (0)
  5. pkg/api/persistentvolume/util_test.go

    							User:       "",
    							SecretFile: "",
    							SecretRef:  nil,
    							ReadOnly:   false,
    						},
    					},
    				},
    			},
    			expected: []string{
    				`spec.cephfs: deprecated in v1.28, non-functional in v1.31+`,
    			},
    		},
    		{
    			name: "PV PhotonPersistentDisk deprecation warning",
    			template: &api.PersistentVolume{
    				Spec: api.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/anonymousFunction.txt

    KaDataFlowExitPointSnapshot:
      defaultExpressionInfo = DefaultExpressionInfo:
        expression = fun(n: Int): Int {
                return n + 1
            }
        type = kotlin.Function1<kotlin.Int, kotlin.Int>
      hasEscapingJumps = false
      hasJumps = false
      hasMultipleJumpKinds = false
      hasMultipleJumpTargets = false
      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 418 bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents/lib.cpp

    #include <iostream>
    #include "${generatedId}/header.h"
    
    int function_${generatedId}() {
        return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 105 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

        // functional form, all such external values need to become function
        // arguments of the outlined functions, and become pass through values in
        // the outlined body function. So when outlining the while body, in addition
        // to the region arguments, all these external references need to be added
        // as function arguments.
        llvm::SmallVector<Value, 4> extern_values =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    [source,groovy]
    ----
    include::{snippetsPath}/developingPlugins/testingPlugins/groovy/url-verifier-plugin/src/integrationTest/groovy/org/myorg/http/DefaultHttpCallerIntegrationTest.groovy[]
    ----
    
    [[functional-tests]]
    === Implementing functional tests
    
    Functional tests verify the correctness of the plugin end-to-end.
    In practice, this means applying, configuring, and executing the functionality of the plugin implementation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. test/fixedbugs/issue54632.go

    // license that can be found in the LICENSE file.
    
    // The inliner would erroneously scan the caller function's body for
    // reassignments *before* substituting the inlined function call body,
    // which could cause false positives in deciding when it's safe to
    // transitively inline indirect function calls.
    
    package main
    
    func main() {
    	bug1()
    	bug2(fail)
    }
    
    func bug1() {
    	fn := fail
    	fn = pass
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 14:31:08 UTC 2022
    - 609 bytes
    - Viewed (0)
Back to top