Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for rfind (0.06 sec)

  1. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        return success();
      }
    };
    
    
    // The below pattern is equivalent to the DRR rule below
    // The checks are dependent on generated values, so we can't add
    // the checks on intermediate values, ideally we should find equivalent
    // checks that guarantees the resultant ops are valid.
    // The extra conditions are the broadcasting conditions.
    //
    // The pattern lower FusedBatchNormV3 to arithmetic ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  2. src/crypto/tls/conn.go

    			if typ != recordTypeApplicationData {
    				return nil, 0, alertUnexpectedMessage
    			}
    			if len(plaintext) > maxPlaintext+1 {
    				return nil, 0, alertRecordOverflow
    			}
    			// Remove padding and find the ContentType scanning from the end.
    			for i := len(plaintext) - 1; i >= 0; i-- {
    				if plaintext[i] != 0 {
    					typ = recordType(plaintext[i])
    					plaintext = plaintext[:i]
    					break
    				}
    				if i == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. src/net/http/request.go

    			})
    		}()
    	}
    	closed := false
    	defer func() {
    		if closed {
    			return
    		}
    		if closeErr := r.closeBody(); closeErr != nil && err == nil {
    			err = closeErr
    		}
    	}()
    
    	// Find the target host. Prefer the Host: header, but if that
    	// is not given, use the host from the request URL.
    	//
    	// Clean the host, in case it arrives with unexpected stuff in it.
    	host := r.Host
    	if host == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. src/cmd/dist/test.go

    				t.registerRaceBenchTest(strings.TrimSuffix(name, ":racebench"))
    			}
    		}
    	} else {
    		// Use 'go list std cmd' to get a list of all Go packages
    		// that running 'go test std cmd' could find problems in.
    		// (In race test mode, also set -tags=race.)
    		//
    		// In long test mode, this includes vendored packages and other
    		// packages without tests so that 'dist test' finds if any of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  5. src/time/time.go

    	// +3     +2      +1        0        -1     -2       -3
    	// the offset to Thursday
    	abs := t.abs()
    	d := Thursday - absWeekday(abs)
    	// handle Sunday
    	if d == 4 {
    		d = -3
    	}
    	// find the Thursday of the calendar week
    	abs += uint64(d) * secondsPerDay
    	year, _, _, yday := absDate(abs, false)
    	return year, yday/7 + 1
    }
    
    // Clock returns the hour, minute, and second within the day specified by t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. src/time/time_test.go

    func TestZoneData(t *testing.T) {
    	lt := Now()
    	// PST is 8 hours west, PDT is 7 hours west. We could use the name but it's not unique.
    	if name, off := lt.Zone(); off != -8*60*60 && off != -7*60*60 {
    		t.Errorf("Unable to find US Pacific time zone data for testing; time zone is %q offset %d", name, off)
    		t.Error("Likely problem: the time zone files have not been installed.")
    	}
    }
    
    // parsedTime is the struct representing a parsed time value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    			// We need to promote the module that maintains it to a root: if some
    			// other module depends on the main module, and that other module also
    			// uses a pruned module graph, it will expect to find all of our
    			// transitive dependencies by reading just our go.mod file, not the go.mod
    			// files of everything we depend on.
    			//
    			// (This is the “import invariant” that makes graph pruning possible.)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

                    catch ( SmbException se ) {
                        /*
                         * Oracle FilesOnline version 9.0.4 doesn't send '.' and '..' so
                         * listFiles may generate undesirable "cannot find
                         * the file specified".
                         */
                        log.debug("delete", se);
                        if ( se.getNtStatus() != NtStatus.NT_STATUS_NO_SUCH_FILE ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. pkg/kubelet/pod_workers_test.go

    			var uid types.UID
    			switch {
    			case tc.update.Pod != nil:
    				uid = tc.update.Pod.UID
    			case tc.update.RunningPod != nil:
    				uid = tc.update.RunningPod.ID
    			default:
    				t.Fatalf("unable to find uid for update")
    			}
    
    			var fns []func()
    
    			podWorkers, _ := createTimeIncrementingPodWorkers()
    
    			if tc.expectBeforeWorker != nil {
    				fns = append(fns, func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. cmd/iam.go

    			continue
    		}
    
    		// Check if this is the first time we are
    		// encountering this LDAP user.
    		if _, ok := parentUserToCredsMap[cred.ParentUser]; !ok {
    			// Try to find the ldapUsername for this
    			// parentUser by extracting JWT claims
    			var (
    				jwtClaims *jwt.MapClaims
    				err       error
    			)
    
    			if cred.SessionToken == "" {
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top