Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 383 for bones (0.1 sec)

  1. cmd/post-policy_test.go

    	retStr := "{"
    	retStr = retStr + expirationStr + ","
    	retStr += conditionStr
    	retStr += "}"
    
    	return []byte(retStr)
    }
    
    // newPostPolicyBytesV4 - creates a bare bones postpolicy string with key and bucket matches.
    func newPostPolicyBytesV4(credential, bucketName, objectKey string, expiration time.Time) []byte {
    	t := UTCNow()
    	// Add the expiration date.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. src/runtime/race/testdata/mop_test.go

    func TestRaceIssue5654(t *testing.T) {
    	text := `Friends, Romans, countrymen, lend me your ears;
    I come to bury Caesar, not to praise him.
    The evil that men do lives after them;
    The good is oft interred with their bones;
    So let it be with Caesar. The noble Brutus
    Hath told you Caesar was ambitious:
    If it were so, it was a grievous fault,
    And grievously hath Caesar answer'd it.
    Here, under leave of Brutus and the rest -
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 16:46:25 UTC 2023
    - 28.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Libraries, applications, web applications and enterprise applications all have differing requirements.
    In this section, we will focus on the bare bones provided by the Java Library Plugin.
    
    By default, the Java Library Plugin provides the `jar` task that packages all the compiled production classes and resources into a single JAR.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  4. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          assertThat(derReader.readOctetString()).isEqualTo("Jones".encodeUtf8())
        }
    
        assertThat(derReader.hasNext()).isFalse()
      }
    
      @Test fun `encode primitive string`() {
        val buffer = Buffer()
        val derWriter = DerWriter(buffer)
    
        derWriter.write("test", tagClass = DerHeader.TAG_CLASS_UNIVERSAL, tag = 26L) {
          derWriter.writeOctetString("Jones".encodeUtf8())
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. test/chan/powser1.go

    		print("Exp: ")
    		printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    		check(Add(Ones, Twos), itor(3), 0, "Add Ones Twos") // 3 3 3 3 3
    		a := make([]rat, N)
    		d := Diff(Ones)
    		for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  6. pkg/bootstrap/platform/gcp.go

    				log.Debugf("Error fetching GCP Metadata property %s: %v", property, err)
    			}
    		}()
    	}
    	return &wg
    }
    
    // Converts a GCP zone into a region.
    func zoneToRegion(z string) (string, error) {
    	// Zones are in the form <region>-<zone_suffix>, so capture everything but the suffix.
    	re := regexp.MustCompile("(.*)-.*")
    	m := re.FindStringSubmatch(z)
    	if len(m) != 2 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  7. test/chan/powser2.go

    		print("Exp: ")
    		Printn(Exp(Ones), 15)
    		print("MonSubst: ")
    		Printn(MonSubst(Ones, neg(one), 2), 10)
    		print("ATan: ")
    		Printn(Integ(zero, MonSubst(Ones, neg(one), 2)), 10)
    	} else { // test
    		check(Ones, one, 5, "Ones")
    		check(Add(Ones, Ones), itor(2), 0, "Add Ones Ones") // 1 1 1 1 1
    		check(Add(Ones, Twos), itor(3), 0, "Add Ones Twos") // 3 3 3 3 3
    		a := make([]*rat, N)
    		d := Diff(Ones)
    		for i := 0; i < N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  8. src/time/zoneinfo_read.go

    	//	utcoff[4] isdst[1] nameindex[1]
    	nzone := n[NZone]
    	if nzone == 0 {
    		// Reject tzdata files with no zones. There's nothing useful in them.
    		// This also avoids a panic later when we add and then use a fake transition (golang.org/issue/29437).
    		return nil, errBadData
    	}
    	zones := make([]zone, nzone)
    	for i := range zones {
    		var ok bool
    		var n uint32
    		if n, ok = zonedata.big4(); !ok {
    			return nil, errBadData
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeNonMaxSuppressionV4 : Pat<
      (TF_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold, $pad_to_max_output_size),
      (TFL_NonMaxSuppressionV4Op $boxes, $scores, $max_output_size, $iou_threshold,
        $score_threshold)>;
    
    def LegalizeNonMaxSuppressionV5 : Pat<
      (TF_NonMaxSuppressionV5Op $boxes, $scores, $max_output_size, $iou_threshold,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/net/ip.go

    }
    
    // CIDRMask returns an [IPMask] consisting of 'ones' 1 bits
    // followed by 0s up to a total length of 'bits' bits.
    // For a mask of this form, CIDRMask is the inverse of [IPMask.Size].
    func CIDRMask(ones, bits int) IPMask {
    	if bits != 8*IPv4len && bits != 8*IPv6len {
    		return nil
    	}
    	if ones < 0 || ones > bits {
    		return nil
    	}
    	l := bits / 8
    	m := make(IPMask, l)
    	n := uint(ones)
    	for i := 0; i < l; i++ {
    		if n >= 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top