Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 179 for getStatus (0.16 sec)

  1. tensorflow/compiler/aot/aot_only_var_handle_op.cc

        if (resource->kind() == XlaResource::kVariable &&
            resource->name() == name_) {
          context->SetResourceOutput(0, resource.get());
          return;
        }
      }
      context->SetStatus(
          errors::InvalidArgument("Variable: ", name_, " not configured"));
    }
    }  // namespace
    
    REGISTER_OP(tfcompile::kXlaAotOnlyVarHandleOp)
        .Doc(R"doc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:57:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                    }
                }
            }).execute()) {
    
                try (ServletOutputStream out = response.getOutputStream(); InputStream in = curlResponse.getContentAsStream()) {
                    response.setStatus(curlResponse.getHttpStatusCode());
                    writeHeaders(response);
                    final String responseContentType = curlResponse.getHeaderValue("Content-Type");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    				t.Fatalf("Creating plugin: %v", err)
    			}
    
    			state := framework.NewCycleState()
    			var gotStatus *framework.Status
    			if test.runPreFilter {
    				gotPreFilterResult, gotStatus := p.(framework.PreFilterPlugin).PreFilter(context.Background(), state, test.pod)
    				if diff := cmp.Diff(test.wantPreFilterStatus, gotStatus); diff != "" {
    					t.Errorf("unexpected PreFilter Status (-want,+got):\n%s", diff)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  4. pilot/pkg/xds/debug_test.go

    	attempts := 5
    	for i := 0; i < attempts; i++ {
    		gotStatus := getSyncStatus(t, s)
    		var errorHandler func(string, ...any)
    		if i == attempts-1 {
    			errorHandler = t.Errorf
    		} else {
    			errorHandler = t.Logf
    		}
    		for _, ss := range gotStatus {
    			if ss.ProxyID == nodeID {
    				if ss.ProxyVersion == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			p, err := New(ctx, nil, nil, feature.Features{})
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    			gotStatus := p.(framework.FilterPlugin).Filter(ctx, nil, test.pod, nodeInfo)
    			if !reflect.DeepEqual(gotStatus, test.wantStatus) {
    				t.Errorf("status does not match: %v, want: %v", gotStatus, test.wantStatus)
    			}
    		})
    	}
    }
    
    func TestIsSchedulableAfterNodeChange(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractorTest.java

                        throws java.io.IOException, ServletException {
    
                    if (!isMultipartRequest(request) || !request.getMethod().equals(HttpMethods.POST)) {
                        response.setStatus(HttpServletResponse.SC_BAD_REQUEST);
                        response.getWriter().println(HttpServletResponse.SC_BAD_REQUEST);
                        HttpConnection.getCurrentConnection().getRequest().setHandled(true);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/reconciler.go

    	iop.Status = status
    	return h.getClient().Status().Update(context.TODO(), iop)
    }
    
    // setStatus sets the status for the component with the given name, which is a key in the given map.
    // If the status is InstallStatus_NONE, the component name is deleted from the map.
    // Otherwise, if the map key/value is missing, one is created.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    	cycleState := framework.NewCycleState()
    	gotStatus := p.(framework.FilterPlugin).Filter(context.Background(), cycleState, pod, nodeInfo)
    	wantStatus := framework.AsStatus(fmt.Errorf(`error reading "PreFilterInterPodAffinity" from cycleState: %w`, framework.ErrNotFound))
    	if !reflect.DeepEqual(gotStatus, wantStatus) {
    		t.Errorf("status does not match: %v, want: %v", gotStatus, wantStatus)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

        }
    
        private Action ok() {
            new ActionSupport("return 200 ok") {
                @Override
                void handle(HttpServletRequest request, HttpServletResponse response) {
                    response.setStatus(200)
                }
            }
        }
    
        private Action notFound() {
            new ActionSupport("return 404 not found") {
                void handle(HttpServletRequest request, HttpServletResponse response) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device_context.h

      ~XlaDeviceAllocator() override;
    
      string Name() override;
    
      void* AllocateRaw(size_t alignment, size_t num_bytes) override;
      void DeallocateRaw(void* ptr) override;
      std::optional<AllocatorStats> GetStats() override;
      bool ClearStats() override;
    
     private:
      // The stream executor of the device.
      se::StreamExecutor* stream_executor_;
    };
    
    // Helper class for managing data transfers between host and XLA devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top