Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for nyaris (0.18 sec)

  1. src/go/types/call.go

    	// --------------+------------------+----------------+
    	// standard func | nargs == npars   | invalid        |
    	// --------------+------------------+----------------+
    	// variadic func | nargs >= npars-1 | nargs == npars |
    	// --------------+------------------+----------------+
    
    	nargs := len(args)
    	npars := sig.params.Len()
    	ddd := hasDots(call)
    
    	// set up parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/call.go

    	// --------------+------------------+----------------+
    	// standard func | nargs == npars   | invalid        |
    	// --------------+------------------+----------------+
    	// variadic func | nargs >= npars-1 | nargs == npars |
    	// --------------+------------------+----------------+
    
    	nargs := len(args)
    	npars := sig.params.Len()
    	ddd := hasDots(call)
    
    	// set up parameters
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top