Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for farm (0.12 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		ps.writeString("this")
    	} else if ps.llvmStyle {
    		if fp.Index == 1 {
    			ps.writeString("fp")
    		} else {
    			fmt.Fprintf(&ps.buf, "fp%d", fp.Index-2)
    		}
    	} else {
    		fmt.Fprintf(&ps.buf, "{parm#%d}", fp.Index)
    	}
    }
    
    func (fp *FunctionParam) Traverse(fn func(AST) bool) {
    	fn(fp)
    }
    
    func (fp *FunctionParam) Copy(fn func(AST) AST, skip func(AST) bool) AST {
    	if skip(fp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: NTLM */
        public static final String LABELS_webauth_scheme_ntlm = "{labels.webauth_scheme_ntlm}";
    
        /** The key of the message: Form */
        public static final String LABELS_webauth_scheme_form = "{labels.webauth_scheme_form}";
    
        /** The key of the message: Log Files */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    		http.StatusConflict)
    }
    
    func (s *TestSuiteCommon) TestGetObjectLarge10MiB(c *check) {
    	// generate a random bucket name.
    	bucketName := getRandomBucketName()
    	// form HTTP request to create the bucket.
    	request, err := newTestSignedRequest(http.MethodPut, getMakeBucketURL(s.endPoint, bucketName),
    		0, nil, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // Verify that the condition generates a single tensor<i1> result.
      Operation *cond_yield = op.getCond().front().getTerminator();
    
      // Allow either the "yield cond" or "yield cond, arg1, ... argN" form,
      // for the yield in the condition block.
      if (cond_yield->getNumOperands() != 1 &&
          cond_yield->getNumOperands() != op.getCond().getArguments().size() + 1)
        return op.emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    // 6.  the pod logs root directory
    func (kl *Kubelet) setupDataDirs() error {
    	if cleanedRoot := filepath.Clean(kl.rootDirectory); cleanedRoot != kl.rootDirectory {
    		return fmt.Errorf("rootDirectory not in canonical form: expected %s, was %s", cleanedRoot, kl.rootDirectory)
    	}
    	pluginRegistrationDir := kl.getPluginsRegistrationDir()
    	pluginsDir := kl.getPluginsDir()
    	if err := os.MkdirAll(kl.getRootDir(), 0750); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    				}
    				break
    			}
    
    			if target.IsElf() && target.IsARM() {
    				// On ELF ARM, the thread pointer is 8 bytes before
    				// the start of the thread-local data block, so add 8
    				// to the actual TLS offset (r->sym->value).
    				// This 8 seems to be a fundamental constant of
    				// ELF on ARM (or maybe Glibc on ARM); it is not
    				// related to the fact that our own TLS storage happens
    				// to take up 8 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__coordination.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 142.7K bytes
    - Viewed (0)
  10. src/reflect/all_test.go

    	// check that type already in binary is found
    	type T1 int
    	checkSameType(t, ChanOf(RecvDir, TypeOf(T1(1))), (<-chan T1)(nil))
    	checkSameType(t, ChanOf(SendDir, TypeOf(T1(1))), (chan<- T1)(nil))
    
    	// check String form of ChanDir
    	if crt.ChanDir().String() != "<-chan" {
    		t.Errorf("chan dir: have %q, want %q", crt.ChanDir().String(), "<-chan")
    	}
    	if cst.ChanDir().String() != "chan<-" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top