Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 145 for Avery (0.1 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    	}
    
    	for _, s := range syms {
    		xfile.addSymbol(s)
    	}
    }
    
    // Generate XCOFF Symbol table.
    // It will be written in out file in Asmbxcoff, because it must be
    // at the very end, especially after relocation sections which needs symbols' index.
    func (f *xcoffFile) asmaixsym(ctxt *Link) {
    	ldr := ctxt.loader
    	// Get correct size for symbols wrapping others symbols like go.string.*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		oldLambdaTemplateLevel = st.lambdaTemplateLevel
    		st.lambdaTemplateLevel = 0
    	}
    
    	// Checking for the enable_if attribute here is what the LLVM
    	// demangler does.  This is not very general but perhaps it is
    	// sufficient.
    	const enableIfPrefix = "Ua9enable_ifI"
    	var enableIfArgs []AST
    	if strings.HasPrefix(st.str, enableIfPrefix) {
    		st.advance(len(enableIfPrefix) - 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// with random data before the first server handshake.
    	//
    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/time/format.go

    	for i, c := range s {
    		if c >= runeSelf || c < ' ' {
    			// This means you are asking us to parse a time.Duration or
    			// time.Location with unprintable or non-ASCII characters in it.
    			// We don't expect to hit this case very often. We could try to
    			// reproduce strconv.Quote's behavior with full fidelity but
    			// given how rarely we expect to hit these edge cases, speed and
    			// conciseness are better.
    			var width int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      TF_ASSERT_OK(MarkForCompilationPassTestHelper::MarkForCompilation(&graph));
      auto clusters = GetClusters(*graph);
      EXPECT_FALSE(clusters.empty());
    }
    
    // Tests that PartitionedCalls are only marked for compilation if every node
    // inside the function can be compiled.
    TEST(XlaCompilationTest, PartitionedCallUnsupported) {
      FunctionDef compilable = FunctionDefHelper::Define(
          "CompilableFn", {"n_a:float", "n_b:float"}, {"n_c:float"}, {},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // and doesn't spam the readiness endpoint too much
      //
      // If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
      // This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
      google.protobuf.BoolValue enabled = 1;
    
      // Minimum consecutive failures for the probe to be considered failed after having succeeded.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/math/big/float_test.go

    					t.Errorf("i = %d, prec = %d, %s:\n\t     %s\n\t/    %s\n\t=    %s\n\twant %s",
    						i, prec, mode, x, y, got, want)
    				}
    			}
    		}
    	}
    }
    
    var long = flag.Bool("long", false, "run very long tests")
    
    // TestFloatQuoSmoke tests all divisions x/y for values x, y in the range [-n, +n];
    // it serves as a smoke test for basic correctness of division.
    func TestFloatQuoSmoke(t *testing.T) {
    	n := 10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  8. cmd/iam-store.go

    		if v == nil {
    			v = set.CreateStringSet(group)
    		} else {
    			v.Add(group)
    		}
    		c.iamUserGroupMemberships[member] = v
    	}
    }
    
    // removeGroupFromMembershipsMap - removes the group from every member
    // in the cache. IMPORTANT: Assumes c.Lock() is held by caller.
    func (c *iamCache) removeGroupFromMembershipsMap(group string) {
    	for member, groups := range c.iamUserGroupMemberships {
    		if !groups.Contains(group) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  9. src/time/time.go

    			// After leap day; pretend it wasn't there.
    			day--
    		case day == 31+29-1:
    			// Leap day.
    			month = February
    			day = 29
    			return
    		}
    	}
    
    	// Estimate month on assumption that every month has 31 days.
    	// The estimate may be too low by at most one month, so adjust.
    	month = Month(day / 31)
    	end := int(daysBefore[month+1])
    	var begin int
    	if day >= end {
    		month++
    		begin = end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    [[rel4.10:aws_s3_permissions]]
    === [4.10] Publishing to AWS S3 requires new permissions
    
    The S3 repository transport protocol allows Gradle to publish artifacts to AWS S3 buckets.
    Starting with this release, every artifact uploaded to an S3 bucket will be equipped with the `bucket-owner-full-control` canned ACL.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
Back to top