Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 785 for bark (0.17 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * It also deals relatively well when the system wall clock jumps forward by large amounts (this clock will jump with it).
     * It does not deal as well with large jumps back in time.
     * <p>
     * When the system wall clock jumps back in time, this clock will effectively slow down until it is back in sync.
     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. cmd/fieldnamedocscheck/field_name_docs_check.go

    	// The rule is:
    	// 1. Get all back-tick quoted names in the doc
    	// 2. Skip the name which is already found mismatched.
    	// 3. Skip the name whose lowercase is different from the lowercase of tag names,
    	//    because some docs use back-tick to quote field value or nil
    	// 4. Check if the name is different from its tag name
    
    	// TODO: a manual pass adding back-ticks to the doc strings, then update the linter to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 18:32:08 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/visual-studio-task-graph.dot

      }
    
      {nameDllVisualStudioProject, nameDllVisualStudioFilters, nameLibVisualStudioProject, nameLibVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      {nameVisualStudioProject, nameVisualStudioFilters} -> visualStudio [dir=back, style=dashed]
      nameVisualStudioSolution -> visualStudio -> openVisualStudio [dir=back]
    
      nameVisualStudioSolution[label=<<i>projectName</i>VisualStudioSolution>]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/container/list/list.go

    // MoveBefore moves element e to its new position before mark.
    // If e or mark is not an element of l, or e == mark, the list is not modified.
    // The element and mark must not be nil.
    func (l *List) MoveBefore(e, mark *Element) {
    	if e.list != l || e == mark || mark.list != l {
    		return
    	}
    	l.move(e, mark.prev)
    }
    
    // MoveAfter moves element e to its new position after mark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/netns_linux.go

    		defer threadNS.Close()
    
    		// switch to target namespace
    		if err = NetnsSet(fdable); err != nil {
    			return err
    		}
    		defer func() {
    			err := threadNS.Set() // switch back
    			if err == nil {
    				// Unlock the current thread only when we successfully switched back
    				// to the original namespace; otherwise leave the thread locked which
    				// will force the runtime to scrap the current thread, that is maybe
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 10:05:36 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. pkg/test/echo/common/scheme/scheme.go

    	TCP       Instance = "tcp"
    	UDP       Instance = "udp"
    	// TLS sends a TLS connection and reports back the properties of the TLS connection
    	// This is similar to `openssl s_client`
    	// Response data is not returned; only information about the TLS handshake.
    	TLS Instance = "tls"
    	// DNS does a DNS query and reports back the results.
    	DNS Instance = "dns"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 17:19:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            assertEquals( Artifact.SCOPE_COMPILE, artifact.getScope(), "dependency artifact has wrong scope." );
    
            //check for back-propagation of default scope.
            assertEquals( Artifact.SCOPE_COMPILE, dep.getScope(), "default scope NOT back-propagated to dependency." );
            */
        }
    
        @Test
        @Disabled
        void testShouldUseInjectedTestScopeFromDependencyManagement() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pkg/controller/deployment/rollback.go

    	if !deploymentutil.EqualIgnoreHash(&d.Spec.Template, &rs.Spec.Template) {
    		logger.V(4).Info("Rolling back deployment to old template spec", "deployment", klog.KObj(d), "templateSpec", rs.Spec.Template.Spec)
    		deploymentutil.SetFromReplicaSetTemplate(d, rs.Spec.Template)
    		// set RS (the old RS we'll rolling back to) annotations back to the deployment;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. test/typeparam/listimp2.dir/a.go

    // If e or mark is not an element of l, or e == mark, the list is not modified.
    // The element and mark must not be nil.
    func (l *List[T]) MoveBefore(e, mark *Element[T]) {
    	if e.list != l || e == mark || mark.list != l {
    		return
    	}
    	l.move(e, mark.prev)
    }
    
    // MoveAfter moves element e to its new position after mark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 8K bytes
    - Viewed (0)
Back to top