Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for nyaris (0.14 sec)

  1. src/main/resources/fess_indices/fess/id/stopwords.txt

    manalagi
    masih
    masihkah
    semasih
    masing
    mau
    maupun
    semaunya
    memang
    mereka
    merekalah
    meski
    meskipun
    semula
    mungkin
    mungkinkah
    nah
    namun
    nanti
    nantinya
    nyaris
    oleh
    olehnya
    seorang
    seseorang
    pada
    padanya
    padahal
    paling
    sepanjang
    pantas
    sepantasnya
    sepantasnyalah
    para
    pasti
    pastilah
    per
    pernah
    pula
    pun
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_functional_to_executor.cc

    namespace {
    // This pass converts mlir functions consisting of mlir ops into a tf_executor
    // dialect as a single island.
    // Result like so:
    //   func @my_fn(%argi...) -> (result_t) {
    //     %results:[[n_args]] = tf_executor.graph {
    //        %island_results:[[nargs + 1]] = tf_executor.island {
    //          ... original ops ...
    //          tf_executor.yield %results...
    //        }
    //        tf_executor.fetch %island_results#...
    //      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. cmd/genman/gen_kube_man.go

    			fmt.Fprintf(out, "**%s-%s(1)**, ", dname, c.Name())
    			genMarkdown(c, name, docsDir)
    		}
    		fmt.Fprintf(out, "\n")
    	}
    
    	out.WriteString(`
    # HISTORY
    January 2015, Originally compiled by Eric Paris (eparis at redhat dot com) based on the kubernetes source material, but hopefully they have been automatically generated since!
    `)
    
    	final := mangen.Render(out.Bytes())
    
    	filename := docsDir + dname + ".1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/core/rule/describe/MethodModelRuleDescriptorTest.groovy

            then:
            sb.toString() == ModelType.of(getClass()).displayName + "#" + desc
    
            where:
            method        | desc
            "noArgs"      | 'noArgs()'
            "oneArg"      | 'oneArg(String)'
            "twoArgs"     | 'twoArgs(String, String)'
            "genericArgs" | 'genericArgs(List<String>, Map<Integer, List<String>>)'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_compilation_cluster_signature_test.cc

    }
    
    void BM_BuildSignature(::testing::benchmark::State& state) {
      const int n_args = state.range(0);
    
      NameAttrList fn;
      fn.set_name("afunction");
      for (int i = 0; i < n_args; i++) {
        (*fn.mutable_attr())[absl::StrCat("T", i)].set_type(DT_FLOAT);
      }
      std::vector<XlaCompiler::Argument> args(n_args);
      for (int i = 0; i < n_args; i++) {
        args[i].kind = (((i % 3) == 0) ? XlaCompiler::Argument::kConstant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/build.gradle.kts

    plugins {
      kotlin("jvm")
      id("ru.vyarus.animalsniffer")
    }
    
    dependencies {
      api(libs.squareup.okio)
      api(libs.squareup.kotlinPoet)
      testImplementation(libs.assertk)
      testImplementation(libs.junit.jupiter.api)
      testImplementation(libs.junit.jupiter.params)
    }
    
    animalsniffer {
      isIgnoreFailures = true
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 02 11:21:58 UTC 2023
    - 309 bytes
    - Viewed (0)
  7. src/internal/syscall/unix/at_solaris.go

    package unix
    
    import "syscall"
    
    // Implemented as sysvicall6 in runtime/syscall_solaris.go.
    func syscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    // Implemented as rawsysvicall6 in runtime/syscall_solaris.go.
    func rawSyscall6(trap, nargs, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err syscall.Errno)
    
    //go:cgo_import_dynamic libc_fstatat fstatat "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 814 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/argument.go

    // nArgs holds how many existing arguments with this name should be set.
    // If nArgs is less than 1, all of them will be updated.
    func SetArgValues(args []Arg, name, value string, nArgs int) []Arg {
    	var count int
    	var found bool
    	for i := len(args) - 1; i >= 0; i-- {
    		if args[i].Name == name {
    			found = true
    			args[i].Value = value
    			if nArgs < 1 {
    				continue
    			}
    			count++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    				ArgsValidator:  cobra.NoArgs,
    			},
    			newEtcdLocalSubphase(),
    			newMarkControlPlaneSubphase(),
    		},
    	}
    }
    
    func newEtcdLocalSubphase() workflow.Phase {
    	return workflow.Phase{
    		Name:          "etcd",
    		Short:         "Add a new local etcd member",
    		Run:           runEtcdPhase,
    		InheritFlags:  getControlPlaneJoinPhaseFlags("etcd"),
    		ArgsValidator: cobra.NoArgs,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/argument_test.go

    		testName     string
    		args         []Arg
    		name         string
    		value        string
    		nArgs        int
    		expectedArgs []Arg
    	}{
    		{
    			testName:     "update 1 argument",
    			args:         []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "bar2"}},
    			name:         "foo",
    			value:        "zz",
    			nArgs:        1,
    			expectedArgs: []Arg{{Name: "foo", Value: "bar1"}, {Name: "foo", Value: "zz"}},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top