Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,021 for happen (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    					check.crossCheck = false
    					break
    				}
    			}
    		}
    	}
    
    	if check.crossCheck {
    		y, err := constraint.Parse(line)
    		if err != nil {
    			// Should never happen - constraint.Parse never rejects a // +build line.
    			// Also, we just checked the syntax above.
    			// Even so, report.
    			check.pass.Reportf(pos, "%v", err)
    			check.crossCheck = false
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

                // The close() on this loader will block until this method completes.
                JarEntry classEntry = jarFile.getJarEntry(classNameToPath(className));
                if (classEntry == null) {
                    // This can happen if the class was "injected" into the classloader, e.g. when decorated class is generated by the ObjectFactory.
                    // Injected classes reuse the protection domain. See ClassLoaderUtils.define and defineDecorator.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pilot/pkg/leaderelection/leaderelection.go

    			go f(stop)
    		}
    		<-stop
    		return
    	}
    	if l.defaultWatcher != nil {
    		go l.defaultWatcher.Run(stop)
    	}
    	for {
    		le, err := l.create()
    		if err != nil {
    			// This should never happen; errors are only from invalid input and the input is not user modifiable
    			panic("LeaderElection creation failed: " + err.Error())
    		}
    		l.mu.Lock()
    		l.le = le
    		l.cycle.Inc()
    		l.mu.Unlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    	if fun.Recv != nil {
    		// method
    		if len(fun.Recv.List) == 0 {
    			// should not happen (incorrect AST); (See issue 17788)
    			// don't show this method
    			return
    		}
    		recvTypeName, imp := baseTypeName(fun.Recv.List[0].Type)
    		if imp {
    			// should not happen (incorrect AST);
    			// don't show this method
    			return
    		}
    		if typ := r.lookupType(recvTypeName); typ != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSessionProvider.kt

            return KaFirSession.createAnalysisSessionByFirResolveSession(firResolveSession, validityToken)
        }
    
        override fun clearCaches() {
            cache.clear()
        }
    
        /**
         * Note: Races cannot happen because the listener is guaranteed to be invoked in a write action.
         */
        internal class SessionInvalidationListener(val project: Project) : LLFirSessionInvalidationListener {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/math/big/floatmarsh.go

    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    		//   (in practice, this should never happen since rounding
    		//   takes care of it, but be safe and do it always)
    		if len(x.mant) < n {
    			n = len(x.mant)
    		}
    		// len(x.mant) >= n
    		sz += 4 + n*_S // exp + mant
    	}
    	buf := make([]byte, sz)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

      PopulateAllQuantizablePatterns(ctx, patterns);
    
      if (failed(applyPatternsAndFoldGreedily(module_op, std::move(patterns)))) {
        // There are cases where no rewrites happen even if a pattern matches,
        // causing this to result in a convergence failure. Consider this as a
        // best-effort.
        module_op.emitWarning("Failed to converge pattern at QuantizePass.");
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/upload.go

    	} else if match[1] > today {
    		u.logger.Printf("Report date for %q is later than today (%s)", filepath.Base(fname), today)
    		return // report is in the future, which shouldn't happen
    	}
    	buf, err := os.ReadFile(fname)
    	if err != nil {
    		u.logger.Printf("%v reading %s", err, fname)
    		return
    	}
    	if u.uploadReportContents(fname, buf) {
    		// anything left to do?
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

          return true;
        }
        if (BlockArgument block_arg = mlir::dyn_cast<BlockArgument>(arg)) {
          // Skip the folding logic if the block argument is not from the function
          // arguments. This can happen when the argument is from a while loop.
          if (block_arg.getParentRegion() != &func_op.getRegion()) {
            return false;
          }
          if (StringAttr attr = func_op.getArgAttrOfType<StringAttr>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. src/encoding/json/decode.go

    func (d *decodeState) arrayInterface() []any {
    	var v = make([]any, 0)
    	for {
    		// Look ahead for ] - can only happen on first iteration.
    		d.scanWhile(scanSkipSpace)
    		if d.opcode == scanEndArray {
    			break
    		}
    
    		v = append(v, d.valueInterface())
    
    		// Next token must be , or ].
    		if d.opcode == scanSkipSpace {
    			d.scanWhile(scanSkipSpace)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top