Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 125 for notFound (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectArtifactResolver.java

                }
            }
            if (resolvableArtifact != null) {
                result.resolved(resolvableArtifact);
            } else {
                result.notFound(artifact.getId());
            }
        }
    
        public ValueCalculator<File> resolveArtifactLater(ComponentArtifactMetadata artifact) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

            if (plugin == null) {
                String classpathStr = injectedClasspath.getAsFiles().stream().map(File::getAbsolutePath).collect(Collectors.joining(File.pathSeparator));
                return PluginResolutionResult.notFound(getDescription(), "classpath: " + classpathStr);
            } else {
                return PluginResolutionResult.found(new InjectedClasspathPluginResolution(plugin));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_profiler.cc

      mutex_lock lock(mu_);
    
      if (auto it = cluster_compile_stats_.find(function.name());
          it != cluster_compile_stats_.end()) {
        return it->second;
      }
    
      return errors::NotFound("Couldn't find compilation stats for cluster: ",
                              function.name());
    }
    
    void DeviceCompilationProfiler::RegisterExecution(
        const NameAttrList& function) {
      mutex_lock lock(mu_);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/tests/device_compiler_test_helper.cc

              absl::StrCat(entry.hlo_module().name(), "_altered"));
          TF_RETURN_IF_ERROR(WriteBinaryProto(env, file_path, entry));
          altered = true;
        }
      }
    
      if (!altered) {
        return errors::NotFound(
            "Did not find any persistent XLA compilation cache entries to alter.");
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    var modVerRE = lazyregexp.New(`^[^@]+@v[0-9]+\.[0-9]+\.[0-9]+(-[^@]*)?(\+incompatible)?$`)
    
    func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	switch {
    	default:
    		http.NotFound(w, r)
    
    	case strings.HasPrefix(r.URL.Path, "/lookup/"):
    		mod := strings.TrimPrefix(r.URL.Path, "/lookup/")
    		if !modVerRE.MatchString(mod) {
    			http.Error(w, "invalid module@version syntax", http.StatusBadRequest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/svn.go

    		if req.FormValue("vcwebsvn") != "" {
    			w.Header().Add("Content-Type", "text/plain; charset=UTF-8")
    			io.WriteString(w, "svn://"+addr+"\n")
    			return
    		}
    		http.NotFound(w, req)
    	})
    
    	return handler, nil
    }
    
    // serve serves a single 'svn://' connection on c.
    func (h *svnHandler) serve(c net.Conn) {
    	defer func() {
    		c.Close()
    
    		s := <-h.s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:44:48 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. cmd/warm-backend-gcs.go

    		fallthrough
    	case "forbidden":
    		err = PrefixAccessDenied{
    			Bucket: bucket,
    			Object: object,
    		}
    	case "invalid":
    		err = BucketNameInvalid{
    			Bucket: bucket,
    		}
    	case "notFound":
    		if object != "" {
    			err = ObjectNotFound{
    				Bucket: bucket,
    				Object: object,
    			}
    			break
    		}
    		err = BucketNotFound{Bucket: bucket}
    	case "conflict":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. cmd/metacache_test.go

    		lastHandout:  metaCacheTestsetTimestamp,
    		dataVersion:  metacacheStreamVersion,
    	},
    	5: {
    		id:           "case-6-404notfound",
    		bucket:       "bucket",
    		root:         "folder/notfound",
    		recursive:    true,
    		status:       scanStateSuccess,
    		fileNotFound: true,
    		error:        "",
    		started:      metaCacheTestsetTimestamp,
    		ended:        metaCacheTestsetTimestamp.Add(time.Minute),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Sep 08 18:06:45 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/webhook_server.go

    		w.Header().Set("Content-Type", "application/json")
    		json.NewEncoder(w).Encode(&v1beta1.AdmissionReview{
    			Response: &v1beta1.AdmissionResponse{
    				Allowed: true,
    			},
    		})
    	default:
    		http.NotFound(w, r)
    	}
    }
    
    // ClockSteppingWebhookHandler given a fakeClock returns a request handler
    // that moves time in given clock by an amount specified in the webhook request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 15 11:11:25 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  10. src/net/http/example_test.go

    	mux.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
    		// The "/" pattern matches everything, so we need to check
    		// that we're at the root here.
    		if req.URL.Path != "/" {
    			http.NotFound(w, req)
    			return
    		}
    		fmt.Fprintf(w, "Welcome to the home page!")
    	})
    }
    
    // HTTP Trailers are a set of key/value pairs like headers that come
    // after the HTTP response, instead of before.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 16:12:45 UTC 2021
    - 5.4K bytes
    - Viewed (0)
Back to top