Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 295 for fwmark (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RootComponentResolutionIntegrationTest.groovy

    was also selected as a variant. Configurations should not act as both a resolution root and a variant simultaneously. Depending on the resolved configuration in this manner has been deprecated. This will fail with an error in Gradle 9.0. Be sure to mark configurations meant for resolution as canBeConsumed=false or use the 'resolvable(String)' configuration factory method to create them. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_versio...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 23 22:33:17 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/runtime/mgclimit.go

    	// total time, not the total time after idle time is subtracted.
    	//
    	// Idle time is counted as any time that a P is on the P idle list plus idle mark
    	// time. Idle mark workers soak up time that the application spends idle.
    	//
    	// On a heavily undersubscribed system, any additional idle time can skew GC CPU
    	// utilization, because the GC might be executing continuously and thrashing,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                details == 'A property without annotation isn\'t considered during up-to-date checking'
                solutions == [
                    'Add an input or output annotation',
                    'Mark it as @Internal',
                ]
                additionalData.asMap == [
                    'parentPropertyName' : 'doubleIterableOptions.*.*',
                    'typeName' : 'MyTask',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. src/text/template/exec.go

    func (s *state) push(name string, value reflect.Value) {
    	s.vars = append(s.vars, variable{name, value})
    }
    
    // mark returns the length of the variable stack.
    func (s *state) mark() int {
    	return len(s.vars)
    }
    
    // pop pops the variable stack up to the mark.
    func (s *state) pop(mark int) {
    	s.vars = s.vars[0:mark]
    }
    
    // setVar overwrites the last declared variable with the given name.
    // Used by variable assignments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/ByteStreams.java

        public int available() throws IOException {
          return (int) Math.min(in.available(), left);
        }
    
        // it's okay to mark even if mark isn't supported, as reset won't work
        @Override
        public synchronized void mark(int readLimit) {
          in.mark(readLimit);
          mark = left;
        }
    
        @Override
        public int read() throws IOException {
          if (left == 0) {
            return -1;
          }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/path/filepath/path_test.go

    		}
    	})
    }
    
    func markTree(n *Node) { walkTree(n, "", func(path string, n *Node) { n.mark++ }) }
    
    func checkMarks(t *testing.T, report bool) {
    	walkTree(tree, tree.name, func(path string, n *Node) {
    		if n.mark != 1 && report {
    			t.Errorf("node %s mark = %d; expected 1", path, n.mark)
    		}
    		n.mark = 0
    	})
    }
    
    // Assumes that each node name is unique. Good enough for a test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/obj7.go

    			if c.autosize == 0 && c.cursym.Func().Text.Mark&LEAF == 0 {
    				if c.ctxt.Debugvlog {
    					c.ctxt.Logf("save suppressed in: %s\n", c.cursym.Func().Text.From.Sym.Name)
    				}
    				c.cursym.Func().Text.Mark |= LEAF
    			}
    
    			if cursym.Func().Text.Mark&LEAF != 0 {
    				cursym.Set(obj.AttrLeaf, true)
    				if p.From.Sym.NoFrame() {
    					break
    				}
    			}
    
    			if p.Mark&LEAF != 0 && c.autosize < abi.StackSmall {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/plan_test.go

    _____________________________________________________________________
    
    
    The table below shows the current state of component configs as understood by this version of kubeadm.
    Configs that have a "yes" mark in the "MANUAL UPGRADE REQUIRED" column require manual config upgrade or
    resetting to kubeadm defaults before a successful upgrade can be performed. The version to manually
    upgrade to is denoted in the "PREFERRED VERSION" column.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    details == 'A property without annotation isn\'t considered during up-to-date checking'
                    solutions == [
                        'Add an input or output annotation',
                        'Mark it as @Internal',
                    ]
                    additionalData.asMap == [
                        'typeName' : 'MyTask',
                        'propertyName' : 'badTime',
                    ]
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    	never recycled.
    
    	gccheckmark: setting gccheckmark=1 enables verification of the
    	garbage collector's concurrent mark phase by performing a
    	second mark pass while the world is stopped.  If the second
    	pass finds a reachable object that was not found by concurrent
    	mark, the garbage collector will panic.
    
    	gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top