Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,332 for efter (0.04 sec)

  1. docs/distributed/decom.sh

    	echo "BUG: original user count differs after decommission"
    	exit 1
    fi
    
    if [ $policy_count -ne $decom_policy_count ]; then
    	echo "BUG: original policy count differs after decommission"
    	exit 1
    fi
    
    ./mc version info myminio/versioned | grep -q "versioning is enabled"
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected versioning enabled after decommission"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BeforeResolveIntegrationTest.groovy

            outputContains('[dep1-1.0.jar, dep2-1.0.jar]')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 02:27:32 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types_64bit.go

    package atomic
    
    // LoadAcquire is a partially unsynchronized version
    // of Load that relaxes ordering constraints. Other threads
    // may observe operations that precede this operation to
    // occur after it, but no operation that occurs after it
    // on this thread can be observed to occur before it.
    //
    // WARNING: Use sparingly and with great care.
    //
    //go:nosplit
    func (u *Uint64) LoadAcquire() uint64 {
    	return LoadAcq64(&u.value)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. src/time/mono_test.go

    			if b != want {
    				t.Errorf("%s = %v, want %v", expr, b, want)
    			}
    		}
    		check(txs+".After("+tys+")", tx.After(ty), c > 0)
    		check(txs+"w.After("+tys+")", txw.After(ty), cw > 0)
    		check(txs+".After("+tys+"w)", tx.After(tyw), cw > 0)
    		check(txs+"w.After("+tys+"w)", txw.After(tyw), cw > 0)
    
    		check(txs+".Before("+tys+")", tx.Before(ty), c < 0)
    		check(txs+"w.Before("+tys+")", txw.Before(ty), cw < 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. src/runtime/pprof/rusage_test.go

    	ok := true
    	var before, after syscall.Rusage
    
    	err := syscall.Getrusage(syscall.RUSAGE_SELF, &before)
    	if err != nil {
    		ok = false
    	}
    
    	f()
    
    	err = syscall.Getrusage(syscall.RUSAGE_SELF, &after)
    	if err != nil {
    		ok = false
    	}
    
    	if !ok {
    		return 0, 0
    	}
    
    	user = time.Duration(after.Utime.Nano() - before.Utime.Nano())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 753 bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/alloc.go

    	if txn, err := al.txnUpdateNodePorts(after, before, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	success = true
    	return result, nil
    }
    
    func (al *Allocators) txnUpdateClusterIPs(after After, before Before, dryRun bool) (transaction, error) {
    	service := after.Service
    
    	allocated, released, err := al.updateClusterIPs(after, before, dryRun)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

            outputContains 'sub with version from action'
            outputContains '[1: before root unspecified, 2: before root from action, 1: after root from script, 2: after root from script]'
            outputContains '[1: before sub unspecified, 2: before sub from action, 1: after sub from script, 2: after sub from script]'
        }
    
        def "lifecycle actions in Kotlin DSL allow using a function defined in a class"() {
            createDirs("a", "b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/go/parser/testdata/commas.src

    // license that can be found in the LICENSE file.
    
    // Test case for error messages/parser synchronization
    // after missing commas.
    
    package p
    
    var _ = []int{
    	0/* ERROR AFTER "missing ','" */
    }
    
    var _ = []int{
    	0,
    	1,
    	2,
    	3/* ERROR AFTER "missing ','" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 367 bytes
    - Viewed (0)
  10. internal/grid/types_test.go

    	left, err := v2.UnmarshalMsg(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) != 0 {
    		t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
    	}
    
    	left, err = msgp.Skip(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    		t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
    	}
    	if !reflect.DeepEqual(v, v2) {
    		t.Errorf("MSS: %v != %v", v, v2)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top