Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for testLogs (0.13 sec)

  1. internal/bucket/replication/replication.go

    			continue
    		}
    		if obj.ExistingObject && rule.ExistingObjectReplication.Status == Disabled {
    			continue
    		}
    		if !strings.HasPrefix(obj.Name, rule.Prefix()) {
    			continue
    		}
    		if rule.Filter.TestTags(obj.UserTags) {
    			rules = append(rules, rule)
    		}
    	}
    	sort.Slice(rules, func(i, j int) bool {
    		return rules[i].Priority > rules[j].Priority && rules[i].Destination.String() == rules[j].Destination.String()
    	})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/issue29198.gox

    v2;
    package server;
    pkgpath issue29198;
    import context context "context";
    import errors errors "errors";
    init context context..import fmt fmt..import poll internal_poll..import testlog internal_testlog..import io io..import os os..import reflect reflect..import runtime runtime..import sys runtime_internal_sys..import strconv strconv..import sync sync..import syscall syscall..import time time..import unicode unicode..import;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 12 23:01:16 UTC 2018
    - 6.4K bytes
    - Viewed (0)
  3. src/testing/testing.go

    		os.Exit(2)
    	}
    	if *testlog != "" {
    		// Note: Not using toOutputDir.
    		// This file is for use by cmd/go, not users.
    		var f *os.File
    		var err error
    		if m.numRun == 1 {
    			f, err = os.Create(*testlog)
    		} else {
    			f, err = os.OpenFile(*testlog, os.O_WRONLY, 0)
    			if err == nil {
    				f.Seek(0, io.SeekEnd)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  4. src/cmd/internal/src/pos_test.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package src
    
    import (
    	"fmt"
    	"testing"
    )
    
    func TestPos(t *testing.T) {
    	f0 := NewFileBase("", "")
    	f1 := NewFileBase("f1", "f1")
    	f2 := NewLinePragmaBase(Pos{}, "f2", "f2", 10, 0)
    	f3 := NewLinePragmaBase(MakePos(f1, 10, 1), "f3", "f3", 100, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:50:26 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	# OS is basic OS access, including helpers (path/filepath, os/exec, etc).
    	# OS includes string routines, but those must be layered above package os.
    	# OS does not include reflection.
    	io/fs
    	< internal/testlog
    	< internal/poll
    	< internal/filepathlite
    	< os
    	< os/signal;
    
    	io/fs
    	< embed;
    
    	unicode, fmt !< net, os, os/signal;
    
    	os/signal, internal/filepathlite, STR
    	< path/filepath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    			testPod:                   testPods[0],
    			expectedContainerOptsLen:  []int{3, 2, 2},
    			expectedAllocatedResName1: 2,
    			expectedAllocatedResName2: 1,
    			expErr:                    nil,
    		},
    		{
    			description:               "Requesting to create a pod without enough resources should fail",
    			testPod:                   testPods[1],
    			expectedContainerOptsLen:  nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    		t.Skip("no resolv.conf on iOS")
    	}
    
    	defer dnsWaitGroup.Wait()
    
    	if fixup := forceGoDNS(); fixup != nil {
    		testDots(t, "go")
    		fixup()
    	}
    	if fixup := forceCgoDNS(); fixup != nil {
    		testDots(t, "cgo")
    		fixup()
    	}
    }
    
    func testDots(t *testing.T, mode string) {
    	names, err := LookupAddr("8.8.8.8") // Google dns server
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. tensorflow/BUILD

        ],
        output_dir = "_api/v1/",
        output_files = TENSORFLOW_API_INIT_FILES_V1,
        output_package = "tensorflow._api.v1",
        packages_to_ignore = ["tensorflow.python.framework.test_ops"],
        root_file_name = "v1.py",
        root_init_template = "api_template_v1.__init__.py",
    )
    
    generate_apis(
        name = "tf_python_api_gen_v2",
        api_packages_file_name = "api_packages.txt",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/func_test.go

    	kind    BlockKind
    	control string
    	succs   []string
    }
    
    type valu struct {
    	name   string
    	op     Op
    	t      *types.Type
    	auxint int64
    	aux    Aux
    	args   []string
    }
    
    func TestArgs(t *testing.T) {
    	c := testConfig(t)
    	fun := c.Fun("entry",
    		Bloc("entry",
    			Valu("a", OpConst64, c.config.Types.Int64, 14, nil),
    			Valu("b", OpConst64, c.config.Types.Int64, 26, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/math/all_test.go

    	}
    	for i := 0; i < len(vflogSC); i++ {
    		if f := Log(vflogSC[i]); !alike(logSC[i], f) {
    			t.Errorf("Log(%g) = %g, want %g", vflogSC[i], f, logSC[i])
    		}
    	}
    }
    
    func TestLogb(t *testing.T) {
    	for i := 0; i < len(vf); i++ {
    		if f := Logb(vf[i]); logb[i] != f {
    			t.Errorf("Logb(%g) = %g, want %g", vf[i], f, logb[i])
    		}
    	}
    	for i := 0; i < len(vflogbSC); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top