Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for SEP (0.03 sec)

  1. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains="" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:43 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. internal/amztime/parse_test.go

    func TestParse(t *testing.T) {
    	type testCase struct {
    		expectedErr  error
    		expectedTime time.Time
    		timeStr      string
    	}
    	testCases := []testCase{
    		{
    			ErrMalformedDate,
    			time.Time{},
    			"Tue Sep  6 07:10:23 PM PDT 2022",
    		},
    		{
    			nil,
    			time.Date(2009, time.November, 10, 23, 0, 0, 0, time.UTC),
    			"Tue, 10 Nov 2009 23:00:00 UTC",
    		},
    	}
    
    	for _, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 07 14:24:54 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    	for i, arg := range argList {
    		if arg == nil {
    			break
    		}
    		if i < startArg {
    			continue
    		}
    		text := gnuArg(&inst, i, arg, PC)
    		if text == "" {
    			continue
    		}
    		buf.WriteString(sep)
    		sep = ","
    		buf.WriteString(text)
    	}
    	return buf.String()
    }
    
    // gnuArg formats arg (which is the argIndex's arg in inst) according to GNU rules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/util/cdi/cdi.go

    }
    
    // annotationValue returns an annotation value for the given devices.
    func annotationValue(devices []string) (string, error) {
    	value, sep := "", ""
    	for _, d := range devices {
    		if _, _, _, err := parseQualifiedName(d); err != nil {
    			return "", err
    		}
    		value += sep + d
    		sep = ","
    	}
    
    	return value, nil
    }
    
    // parseQualifiedName splits a qualified name into device vendor, class,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 09:48:24 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. cmd/metacache-entries_test.go

    		testName string
    		entry    string
    		dir      string
    		sep      string
    		want     bool
    	}{
    		{
    			testName: "basic-file",
    			entry:    "src/file",
    			dir:      "src/",
    			sep:      slashSeparator,
    			want:     true,
    		},
    		{
    			testName: "basic-dir",
    			entry:    "src/dir/",
    			dir:      "src/",
    			sep:      slashSeparator,
    			want:     true,
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 31.6K bytes
    - Viewed (0)
  6. internal/config/constants.go

    	EnvBrowserRedirectURL         = "MINIO_BROWSER_REDIRECT_URL"
    	EnvRootDriveThresholdSize     = "MINIO_ROOTDRIVE_THRESHOLD_SIZE"
    	EnvRootDiskThresholdSize      = "MINIO_ROOTDISK_THRESHOLD_SIZE" // Deprecated Sep 2023
    	EnvBrowserLoginAnimation      = "MINIO_BROWSER_LOGIN_ANIMATION"
    	EnvBrowserSessionDuration     = "MINIO_BROWSER_SESSION_DURATION" // Deprecated after November 2023
    	EnvMinioStsDuration           = "MINIO_STS_DURATION"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 01 16:36:33 UTC 2024
    - 3.4K bytes
    - Viewed (1)
  7. tensorflow/cc/framework/scope.cc

    string Scope::Impl::GetNameForOp(const string& default_name) const {
      const string unique_name =
          GetUniqueName(default_name, true /* check_single_use */);
      const string sep =
          name_.empty() || unique_name.empty() ? "" : kScopeSeparator;
      return strings::StrCat(name_, sep, unique_name);
    }
    
    string Scope::GetUniqueNameForOp(const string& default_name) const {
      if (impl()->single_use_scope()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    		}
    	}
    
    	return v, nil
    }
    
    // chop chops s at the first instance of sep, if any,
    // and returns the text before and after sep.
    // If sep is not present, chop returns before is s and after is empty.
    func chop(s, sep string) (before, after string) {
    	i := strings.Index(s, sep)
    	if i < 0 {
    		return s, ""
    	}
    	return s[:i], s[i+len(sep):]
    }
    
    // verifier is a trivial Verifier implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/disasm.go

    		i := pc - d.textStart
    		text, size := d.disasm(code[i:], pc, lookup, d.byteOrder, gnuAsm)
    		file, line, _ := d.pcln.PCToLine(pc)
    		sep := "\t"
    		for len(relocs) > 0 && relocs[0].Addr < i+uint64(size) {
    			text += sep + relocs[0].Stringer.String(pc-start)
    			sep = " "
    			relocs = relocs[1:]
    		}
    		f(pc, uint64(size), file, line, text)
    		pc += uint64(size)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  10. src/math/big/ratconv.go

    func (z *Rat) SetString(s string) (*Rat, bool) {
    	if len(s) == 0 {
    		return nil, false
    	}
    	// len(s) > 0
    
    	// parse fraction a/b, if any
    	if sep := strings.Index(s, "/"); sep >= 0 {
    		if _, ok := z.a.SetString(s[:sep], 0); !ok {
    			return nil, false
    		}
    		r := strings.NewReader(s[sep+1:])
    		var err error
    		if z.b.abs, _, _, err = z.b.abs.scan(r, 0, false); err != nil {
    			return nil, false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top