Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for nextB (0.23 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, NOT_DontClusterSpreadingNodes) {
      // MatMulSource below creates data for nodes on GPU0 and GPU1 and is placed
      // on GPU0. However, it should not be clustered with the next node on
      // GPU0, because that will prevent the node on GPU1 from beginning its work as
      // soon as the data has been produced.
      //
      // This graph is:
      // (Const0, Const0) -> MatMulSource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    gpg: BAD signature from "Tom Ball <****>" [unknown]
    ----
    
    What this tells us is that the problem is _not_ on the local machine: the repository _already contains a bad signature_.
    
    The next step is to do the same by downloading what is actually on Maven Central:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    		}
    		if topDeleteMarker && idx == 0 && xl.Type == DeleteType {
    			hidden = true
    			return errDoneForNow
    		}
    		if !xl.FreeVersion() {
    			hidden = false
    			return errDoneForNow
    		}
    		// Check next version
    		return nil
    	})
    	return hidden
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/time/time_test.go

    			t.Errorf("got %d; expected %d for %d-%02d",
    				di, tt.di, tt.year, tt.month)
    		}
    	}
    }
    
    func TestAddToExactSecond(t *testing.T) {
    	// Add an amount to the current time to round it up to the next exact second.
    	// This test checks that the nsec field still lies within the range [0, 999999999].
    	t1 := Now()
    	t2 := t1.Add(Second - Duration(t1.Nanosecond()))
    	sec := (t1.Second() + 1) % 60
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			if err != nil {
    				return nil, err
    			}
    			if len(m.GetContinue()) == 0 {
    				meta.SetList(originalList, items)
    				return originalList, nil
    			}
    
    			// Set up the next loop.
    			listOptions.Continue = m.GetContinue()
    			listOptions.ResourceVersion = ""
    			listOptions.ResourceVersionMatch = ""
    		}
    	}()
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    	defer store.unlock()
    
    	// We should only update the in-memory cache if there were no changes
    	// to the in-memory cache since the disk loading began. If there
    	// were changes to the in-memory cache we should wait for the next
    	// cycle until we can safely update the in-memory cache.
    	//
    	// An in-memory cache must be replaced only if we know for sure that the
    	// values loaded from disk are not stale. They might be stale if the
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    	OP_MFLR_R0       = OP_MFLR | 0<<21            // mflr r0
    	OP_MTLR_R0       = OP_MTLR | 0<<21            // mtlr r0
    
    	// This is a special, preferred form of bcl to obtain the next
    	// instruction address (NIA, aka PC+4) in LR.
    	OP_BCL_NIA = OP_BCL | 20<<21 | 31<<16 | 1<<2 // bcl 20,31,$+4
    
    	// Masks to match opcodes
    	MASK_PLD_PFX  = 0xfff70000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    GTEST_API_ ::std::string FormatFileLocation(const char* file, int line);
    
    // Formats a file location for compiler-independent XML output.
    // Although this function is not platform dependent, we put it next to
    // FormatFileLocation in order to contrast the two functions.
    GTEST_API_ ::std::string FormatCompilerIndependentFileLocation(const char* file,
                                                                   int line);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/Futures.java

              // this is technically unnecessary, but should speed up later accesses
              delegateIndex = i + 1;
              return;
            }
          }
          // If all the delegates were complete, no reason for the next listener to have to
          // go through the whole list. Avoids O(n^2) behavior when the entire output list is
          // cancelled.
          delegateIndex = delegates.size();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    		pkgs := goDirPackages(t.T, longdir, singlefilepkgs)
    		errPkg := len(pkgs) - 1
    		if wantError && action == "errorcheckandrundir" {
    			// The last pkg should compiled successfully and will be run in next case.
    			// Preceding pkg must return an error from compileInDir.
    			errPkg--
    		}
    		importcfgfile := importcfg(pkgs)
    		for i, pkg := range pkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top