Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for notFound (0.13 sec)

  1. src/internal/bytealg/indexbyte_loong64.s

    	// R7 = byte to find
    	AND	$0xff, R7
    	MOVV	R4, R6		// store base for later
    	ADDV	R4, R5		// end
    	ADDV	$-1, R4
    
    	PCALIGN	$16
    loop:
    	ADDV	$1, R4
    	BEQ	R4, R5, notfound
    	MOVBU	(R4), R8
    	BNE	R7, R8, loop
    
    	SUBV	R6, R4		// remove base
    	RET
    
    notfound:
    	MOVV	$-1, R4
    	RET
    
    TEXT ·IndexByteString<ABIInternal>(SB),NOSPLIT,$0-32
    	// R4 = s_base
    	// R5 = s_len
    	// R6 = byte to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 905 bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/FilteredModuleComponentRepository.java

            }
    
            @Override
            public boolean isVersionListing() {
                return moduleComponentIdentifier == null;
            }
    
            @Override
            public void notFound() {
                notFound = true;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. samples/bookinfo/platform/kube/cleanup.sh

    ret=$?
    function cleanup() {
      rm -f "${OUTPUT}"
    }
    
    trap cleanup EXIT
    
    if [[ ${ret} -eq 0 ]];then
      cat "${OUTPUT}"
    else
      # ignore NotFound errors
      OUT2=$(grep -v NotFound "${OUTPUT}")
      if [[ -n ${OUT2} ]];then
        cat "${OUTPUT}"
        exit ${ret}
      fi
    fi
    
    # wait for 30 sec for bookinfo to clean up
    sleep 30
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 16:07:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CheckedFingerprint.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.util.Path
    
    
    sealed class CheckedFingerprint {
        // No fingerprint, which means no cache entry
        object NotFound : CheckedFingerprint()
    
        // Everything is up-to-date
        object Valid : CheckedFingerprint()
    
        // The entry cannot be reused at all and should be recreated from scratch
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/grad_op_registry.cc

            ". Please see "
            "https://www.tensorflow.org/code/"
            "tensorflow/cc/gradients/README.md"
            " for instructions on how to add C++ gradients.";
        return errors::NotFound(error_msg);
      }
      *func = iter->second;
      return absl::OkStatus();
    }
    
    }  // end namespace ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

            ModuleDependency markerDependency = getMarkerDependency(pluginRequest);
            String markerVersion = markerDependency.getVersion();
            if (isNullOrEmpty(markerVersion)) {
                return PluginResolutionResult.notFound(SOURCE_NAME, "plugin dependency must include a version number for this source");
            }
    
            boolean autoApplied = pluginRequest.getOrigin() == PluginRequestInternal.Origin.AUTO_APPLIED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/go/internal/gcimporter/gcimporter.go

    				filename, err = lookupGorootExport(bp.Dir)
    				if err == nil {
    					_, err = os.Stat(filename)
    				}
    				if err == nil {
    					return filename, bp.ImportPath, nil
    				}
    			}
    			goto notfound
    		} else {
    			noext = strings.TrimSuffix(bp.PkgObj, ".a")
    		}
    		id = bp.ImportPath
    
    	case build.IsLocalImport(path):
    		// "./x" -> "/this/directory/x.ext", "/this/directory/x"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. pkg/kube/controllers/common.go

    			return empty
    		}
    	}
    	return o
    }
    
    func ExtractObject(obj any) Object {
    	return Extract[Object](obj)
    }
    
    // IgnoreNotFound returns nil on NotFound errors.
    // All other values that are not NotFound errors or nil are returned unmodified.
    func IgnoreNotFound(err error) error {
    	if kerrors.IsNotFound(err) {
    		return nil
    	}
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. pkg/kubelet/util/swap/swap_util.go

    	klog.InfoS("Swap is on", "/proc/swaps contents", procSwapsStr)
    	return len(procSwapsLines) > 1
    }
    
    // IsSwapOn detects whether swap in enabled on the system by inspecting
    // /proc/swaps. If the file does not exist, an os.NotFound error will be returned.
    // If running on windows, swap is assumed to always be false.
    func IsSwapOn() (bool, error) {
    	isSwapOnHelper := func() (bool, error) {
    		if sysruntime.GOOS == "windows" {
    			return false, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/AlreadyOnClasspathPluginResolver.java

                return PluginResolutionResult.found(pluginResolution);
            } else {
                return PluginResolutionResult.notFound("Classpath", "Plugin with id '" + pluginId + "' not found.");
            }
        }
    
        private boolean isPresentOnClasspath(PluginId pluginId) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top