Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 505 for farm (0.09 sec)

  1. src/net/netip/netip_test.go

    		// big-endian uint32 form, but we don't.
    		"1234",
    		// IPv4 with a zone specifier
    		"1.2.3.4%eth0",
    		// IPv4 field must have at least one digit
    		".1.2.3",
    		"1.2.3.",
    		"1..2.3",
    		// IPv4 address too long
    		"1.2.3.4.5",
    		// IPv4 in dotted octal form
    		"0300.0250.0214.0377",
    		// IPv4 in dotted hex form
    		"0xc0.0xa8.0x8c.0xff",
    		// IPv4 in class B form
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java

    import org.codelibs.fess.crawler.client.ftp.FtpClient;
    import org.codelibs.fess.crawler.client.http.Authentication;
    import org.codelibs.fess.crawler.client.http.HcHttpClient;
    import org.codelibs.fess.crawler.client.http.form.FormScheme;
    import org.codelibs.fess.crawler.client.http.impl.AuthenticationImpl;
    import org.codelibs.fess.crawler.client.http.ntlm.JcifsEngine;
    import org.codelibs.fess.crawler.client.smb.SmbAuthentication;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/sym/symkind.go

    	objabi.SCOVERAGE_COUNTER:       SCOVERAGE_COUNTER,
    	objabi.SCOVERAGE_AUXVAR:        SCOVERAGE_AUXVAR,
    	objabi.SSEHUNWINDINFO:          SSEHUNWINDINFO,
    }
    
    // ReadOnly are the symbol kinds that form read-only sections. In some
    // cases, if they will require relocations, they are transformed into
    // rel-ro sections using relROMap.
    var ReadOnly = []SymKind{
    	STYPE,
    	SSTRING,
    	SGOSTRING,
    	SGOFUNC,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/templates/productpage.html

            <h2 class="mt-5 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to BookInfo</h2>
        </div>
        <div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
          <form class="space-y-6" method="post" action='login' name="login_form">
            <div>
              <label for="email" class="block text-sm font-medium leading-6 text-gray-900">Username</label>
              <div class="mt-2">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    	numberOfMissedSchedules := (timeElapsed / timeBetweenTwoSchedules) + 1
    
    	var mostRecentTime time.Time
    	// to get the most recent time accurate for regular schedules and the ones
    	// specified with @every form, we first need to calculate the potential earliest
    	// time by multiplying the initial number of missed schedules by its interval,
    	// this is critical to ensure @every starts at the correct time, this explains
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. src/internal/bisect/bisect.go

    // match marker with that change ID, as returned by [Marker].
    // The markers are elided when displaying the lines to the user.
    //
    // A match marker has the form “[bisect-match 0x1234]” where
    // 0x1234 is the change ID in hexadecimal.
    // An alternate form is “[bisect-match 010101]”, giving the change ID in binary.
    //
    // When [Matcher.Visible] returns false, the match reports are only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  7. src/net/http/client_test.go

    	defer afterTest(t)
    	tr := &recordingTransport{}
    	client := &Client{Transport: tr}
    
    	urlStr := "http://dummy.faketld/"
    	form := make(url.Values)
    	form.Set("foo", "bar")
    	form.Add("foo", "bar2")
    	form.Set("bar", "baz")
    	client.PostForm(urlStr, form) // Note: doesn't hit network
    
    	if tr.req.Method != "POST" {
    		t.Errorf("got method %q, want %q", tr.req.Method, "POST")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/codegen_test_h.golden

      MyClass& operator=(const MyClass&) = delete;
    
      // Arg methods for managing input buffers. Buffers are in row-major order.
      // There is a set of methods for each positional argument, with the following
      // general form:
      //
      // void set_argN_data(void* data)
      //   Sets the buffer of type T for positional argument N. May be called in
      //   any AllocMode. Must be called before Run to have an effect. Must be
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/link.go

    //			offset = x
    //			val = int32(y)
    //
    //	reg<<shift, reg>>shift, reg->shift, reg@>shift
    //		Shifted register value, for ARM and ARM64.
    //		In this form, reg must be a register and shift can be a register or an integer constant.
    //		Encoding:
    //			type = TYPE_SHIFT
    //		On ARM:
    //			offset = (reg&15) | shifttype<<5 | count
    //			shifttype = 0, 1, 2, 3 for <<, >>, ->, @>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug.go

    	if err := req.ParseForm(); err != nil {
    		w.WriteHeader(http.StatusBadRequest)
    		_, _ = w.Write([]byte("Failed to parse request\n"))
    		return
    	}
    	if req.Form.Get("clear") != "" {
    		s.Cache.ClearAll()
    		_, _ = w.Write([]byte("Cache cleared\n"))
    		return
    	}
    	if req.Form.Get("sizes") != "" {
    		snapshot := s.Cache.Snapshot()
    		raw := make(map[string]int, len(snapshot))
    		totalSize := 0
    		for _, resource := range snapshot {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top