Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Nice (0.05 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    }
                }
            '''
            createBuildScripts("""
                def attr1 = Attribute.of('custom', String)
                def attr2 = Attribute.of('nice', Boolean)
    
                dependencies {
                    api("org.test:bar:1.0") {
                        attributes {
                            attribute(attr1, 'hello')
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  2. src/html/template/exec_test.go

    	{"html untyped nil", `{{html .Empty0}}`, "<nil>", tVal, true}, // NOTE: "<no value>" in text/template
    
    	// JavaScript.
    	{"js", `{{js .}}`, `It\'d be nice.`, `It'd be nice.`, true},
    
    	// URL query.
    	{"urlquery", `{{"http://www.example.org/"|urlquery}}`, "http%3A%2F%2Fwww.example.org%2F", nil, true},
    
    	// Booleans
    	{"not", "{{not true}} {{not false}}", "false true", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	dsc.expectations.DeletionObserved(logger, dsKey)
    	dsc.enqueueDaemonSet(ds)
    }
    
    func (dsc *DaemonSetsController) addNode(logger klog.Logger, obj interface{}) {
    	// TODO: it'd be nice to pass a hint with these enqueues, so that each ds would only examine the added node (unless it has other work to do, too).
    	dsList, err := dsc.dsLister.List(labels.Everything())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	{"html typed nil", `{{html .NIL}}`, "<nil>", tVal, true},
    	{"html untyped nil", `{{html .Empty0}}`, "<no value>", tVal, true},
    
    	// JavaScript.
    	{"js", `{{js .}}`, `It\'d be nice.`, `It'd be nice.`, true},
    
    	// URL query.
    	{"urlquery", `{{"http://www.example.org/"|urlquery}}`, "http%3A%2F%2Fwww.example.org%2F", nil, true},
    
    	// Booleans
    	{"not", "{{not true}} {{not false}}", "false true", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	}
    
    	if size == 0 {
    		if raceenabled {
    			// The race detector assumes the heap lives in
    			// [0x00c000000000, 0x00e000000000), but we
    			// just ran out of hints in this region. Give
    			// a nice failure.
    			throw("too many address space collisions for -race mode")
    		}
    
    		// All of the hints failed, so we'll take any
    		// (sufficiently aligned) address the kernel will give
    		// us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. pkg/volume/testing/testing.go

    		return &used, err
    	}
    	tmpDir, err := utiltesting.MkTmpdir("metrics_du_test")
    	if err != nil {
    		return nil, err
    	}
    	defer os.RemoveAll(tmpDir)
    	out, err := exec.New().Command("nice", "-n", "19", "du", "-x", "-s", "-B", "1", tmpDir).CombinedOutput()
    	if err != nil {
    		return nil, fmt.Errorf("failed command 'du' on %s with error %v", tmpDir, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                  // and also close when focus changes to outside the picker...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        private static final String SCRIPTS_PACKAGE = "org.gradle.groovy.scripts";
    
        /**
         * When updating this mapping, consider being nice and also updating the list of generated imports for our internal test infrastructure.
         * See the import list in AnnotationGenerator.kt
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    // b is a join point in a loop. In contrast with findIndVar, this
    // depends on facts established for b, which is why it happens when
    // visiting b.
    //
    // TODO: It would be nice to combine this with findIndVar.
    func addLocalInductiveFacts(ft *factsTable, b *Block) {
    	// This looks for a specific pattern of induction:
    	//
    	// 1. i1 = OpPhi(min, i2) in b
    	// 2. i2 = i1 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/runtime/mgcmark.go

    			// to have a GC program allocated on the stack.
    			// We need some space to unpack the program into a straight
    			// bitmask, which we allocate/free here.
    			// TODO: it would be nice if there were a way to run a GC
    			// program without having to store all its bits. We'd have
    			// to change from a Lempel-Ziv style program to something else.
    			// Or we can forbid putting objects on stacks if they require
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
Back to top