Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for nextch (0.18 sec)

  1. cmd/iam-object-store.go

    		var p PolicyDoc
    		err = p.parseJSON(data)
    		if err != nil {
    			return err
    		}
    
    		if p.Version == 0 {
    			// This means that policy was in the old version (without any
    			// timestamp info). We fetch the mod time of the file and save
    			// that as create and update date.
    			p.CreateDate = objInfo.ModTime
    			p.UpdateDate = objInfo.ModTime
    		}
    
    		m[policy] = p
    		return nil
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    		import "hub.jazz.net/git/user/project/sub/directory"
    
    For code hosted on other servers, import paths may either be qualified
    with the version control type, or the go tool can dynamically fetch
    the import path over https/http and discover where the code resides
    from a <meta> tag in the HTML.
    
    To declare the code location, an import path of the form
    
    	repository.vcs/path
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server_test.go

    			}
    		})
    	}
    }
    
    func checkCert(t *testing.T, s *Server, cert, key []byte) bool {
    	t.Helper()
    	actual, err := s.getIstiodCertificate(nil)
    	if err != nil {
    		t.Fatalf("fail to load fetch certs.")
    	}
    	expected, err := tls.X509KeyPair(cert, key)
    	if err != nil {
    		t.Fatalf("fail to load test certs.")
    	}
    	return bytes.Equal(actual.Certificate[0], expected.Certificate[0])
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

        core_to_host.push_back(host_device);
        return mlir::success();
      }
    }
    
    mlir::LogicalResult GetNonReplicatedTPU0(mlir::Operation* op,
                                             std::string* tpu0_device) {
      // Fetch the TPU devices.
      mlir::ModuleOp moduleOp = op->getParentOfType<mlir::ModuleOp>();
      mlir::TF::RuntimeDevices devices;
      if (failed(tensorflow::GetDevicesFromOp(moduleOp, &devices)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. cmd/encryption-v1.go

    				}
    			}
    			objects = objects[N:]
    			continue
    		}
    
    		// There is at least one SSE-S3 single-part object.
    		// For all SSE-S3 single-part objects we have to
    		// fetch their decryption keys. We do this using
    		// a Bulk-Decryption API call, if available.
    		keys, err := crypto.S3.UnsealObjectKeys(ctx, k, metadata, buckets, names)
    		if err != nil {
    			return err
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    	isCompressed, err := oi.IsCompressedOK()
    	if err != nil {
    		return nil, 0, 0, err
    	}
    
    	// if object is encrypted and it is a restore request or if NoDecryption
    	// was requested, fetch content without decrypting.
    	if opts.Transition.RestoreRequest != nil || opts.NoDecryption {
    		isEncrypted = false
    		isCompressed = false
    	}
    
    	// Calculate range to read (different for encrypted/compressed objects)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top