Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 489 for Tiller (0.09 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        Additionally, any variables or constants used by the function are implicitly
        appended to the argument list of the underlying func in a way that is
        transparent to the caller.
    
        The function arg/result attribute
        `tf_saved_model.index_path = [...some list of strings and integers...]}`
        represents the path which one would use to index into a structured
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/LibraryUtils.kt

            val files = mutableSetOf<VirtualFile>()
            if (includeRoot) {
                files.add(root)
            }
            VfsUtilCore.iterateChildrenRecursively(
                root,
                /*filter=*/{ true },
                /*iterator=*/{ virtualFile ->
                    if (!virtualFile.isDirectory) {
                        files.add(virtualFile)
                    }
                    true
                }
            )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. pkg/kube/krt/README.md

    ### Fetch details
    
    In addition to simply fetching _all_ resources from a collection, a filter can be provided.
    This is more efficient than filtering outside of `Fetch`, as the framework can filter un-matched objects earlier, skipping redundant work.
    The following filters are provided
    
    * `FilterName(name, namespace)`: filters an object by Name and Namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

                append(" ")
                append(diagnostic.defaultMessage)
            }
        }
    
        private fun dumpClassFiles(outputFiles: List<KaCompiledFile>): String {
            val classes = outputFiles
                .filter { it.path.endsWith(".class", ignoreCase = true) }
                .also { check(it.isNotEmpty()) }
                .sortedBy { it.path }
                .map { outputFile ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_overlay.txt

    func PrintMessage() {
    	fmt.Println("hello")
    }
    -- m/overlay/printpath.go --
    package main
    
    import (
    	"fmt"
    	"path/filepath"
    	"runtime"
    )
    
    func main() {
    	_, file, _, _ := runtime.Caller(0)
    
    	// Since https://golang.org/cl/214286, the runtime's debug paths are
    	// slash-separated regardless of platform, so normalize them to system file
    	// paths.
    	fmt.Println(filepath.FromSlash(file))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/generated.proto

      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
      // `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension options = 12;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admission/v1beta1/generated.proto

      // e.g. `meta.k8s.io/v1.DeleteOptions` or `meta.k8s.io/v1.CreateOptions`. This may be
      // different than the options the caller provided. e.g. for a patch request the performed
      // Operation might be a CREATE, in which case the Options will a
      // `meta.k8s.io/v1.CreateOptions` even though the caller provided `meta.k8s.io/v1.PatchOptions`.
      // +optional
      optional .k8s.io.apimachinery.pkg.runtime.RawExtension options = 12;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/sessionBuilderTestUtils.kt

            Assertions.assertEquals(callableId, symbol.callableId)
        }
    }
    
    internal fun compileCommonKlib(kLibSourcesRoot: Path): Path {
        val ktFiles = Files.walk(kLibSourcesRoot).asSequence().filter { it.extension == "kt" }.toList()
        val testKlib = KtTestUtil.tmpDir("testLibrary").resolve("library.klib").toPath()
    
        val arguments = buildList {
            ktFiles.mapTo(this) { it.absolutePathString() }
            add("-d")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/PropertyTest.kt

                listOf(CollectedPropertyInformation(name, type, type.toDataTypeRefOrError(), DefaultDataProperty.DefaultPropertyMode.DefaultReadWrite, false, false, false, emptyList()))
                    .filter { propertyNamePredicate(it.name) }
        }
    
        private
        fun schema() = schemaFromTypes(
            MyReceiver::class,
            PropertyTest::class.nestedClasses,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/CompilePrecompiledScriptPluginPlugins.kt

                            PrecompiledPluginsBlock::class,
                            implicitImportsForPrecompiledScriptPlugins(implicitImports)
                        ),
                        classPathFiles.filter { it.exists() },
                        logger,
                    ) { it } // TODO: translate paths
            }
        }
    
        @Suppress("DEPRECATION")
        private
        fun resolveJvmTarget(): JavaVersion =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:57 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top