Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for differs (0.64 sec)

  1. cmd/object-handlers_test.go

    		}
    
    		if actualError.BucketName != bucketName {
    			t.Errorf("MinIO %s: error response bucket name differs from expected value", instanceType)
    		}
    
    		if actualError.Key != objectName {
    			t.Errorf("MinIO %s: error response object name (%s) differs from expected value (%s)", instanceType, actualError.Key, objectName)
    		}
    	}
    
    	// Testing for anonymous API request.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      bool InferShapeForIf(IfOp op);
    
      // Infers the shape IfRegion outputs based on the shapes of the then and else
      // yields.
      bool InferShapeForIfRegion(IfRegionOp op);
    
      // Infers the shape CaseOp outputs based on the shapes of branch function
      // result types.
      bool InferShapeForCase(CaseOp op);
    
      // Infers the shape CaseRegion outputs based on the shapes of the branch
      // yields.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // form NAME=VALUE and changes the default settings
    // of the named environment variables to the given values.
    //
    // The -changed flag prints only those settings whose effective
    // value differs from the default value that would be obtained in
    // an empty environment with no prior uses of the -w flag.
    //
    // For more about environment variables, see 'go help environment'.
    //
    // # Update packages to use new APIs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    Handler
    intentional write failure
    Retried.
    Dial
    Write("%s")
    Handler
    Write("%s")
    Handler
    `, tc.reqString, tc.reqString, tc.reqString)
    			if got != want {
    				t.Errorf("Log of events differs. Got:\n%s\nWant:\n%s", got, want)
    			}
    		})
    	}
    }
    
    // Issue 6981
    func TestTransportClosesBodyOnError(t *testing.T) { run(t, testTransportClosesBodyOnError) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        result.Append(std::move(pad));
      }
    }
    
    bool Translator::UpdateBufferOffsets(tflite::Model* mutable_model) {
      auto buffers = mutable_model->mutable_buffers();
      bool ret = true;
      for (auto& it : buffer_idx_map_) {
        tflite::Buffer* buffer = buffers->GetMutableObject(it.first);
    
        ret &= buffer->mutate_offset(it.second.first);
        ret &= buffer->mutate_size(it.second.second);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// expectContinueReader, which wants to write 100 Continue)
    	// against the main writer.
    	writeContinueMu  sync.Mutex
    	canWriteContinue atomic.Bool
    
    	w  *bufio.Writer // buffers output in chunks to chunkWriter
    	cw chunkWriter
    
    	// handlerHeader is the Header that Handlers get access to,
    	// which may be retained and mutated even after WriteHeader.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    				test.name, test.exp, test.got)
    		}
    	}
    }
    
    func TestTranslateTimestampUntil(t *testing.T) {
    	// Since this method compares the time with time.Now() internally,
    	// small buffers of 0.1 seconds are added on comparing times to consider method call overhead.
    	// Otherwise, the output strings become shorter than expected.
    	const buf = 1e8
    	tl := stringTestList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	res := ExportAppendTime(b[:0], t1)
    	t2, err := ParseTime(string(res))
    	if err != nil {
    		t.Fatalf("Error parsing time: %s", err)
    	}
    	if !t1.Equal(t2) {
    		t.Fatalf("Times differ; expected: %v, got %v (%s)", t1, t2, string(res))
    	}
    }
    
    func TestServerConnState(t *testing.T) { run(t, testServerConnState, []testMode{http1Mode}) }
    func testServerConnState(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top