Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for User_id (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	// a padded or an unpadded string.
    	for i := 0; i < 8; i++ {
    		sa.raw.Nodeid[i] = ' '
    		sa.raw.User_id[i] = ' '
    		sa.raw.Name[i] = ' '
    	}
    	if len(sa.UserID) > 8 || len(sa.Name) > 8 {
    		return nil, 0, EINVAL
    	}
    	for i, b := range []byte(sa.UserID[:]) {
    		sa.raw.User_id[i] = int8(b)
    	}
    	for i, b := range []byte(sa.Name[:]) {
    		sa.raw.Name[i] = int8(b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    		t.Fatalf("no view should be created, got %v", err)
    	}
    
    	query := DB.Model(&User{}).
    		Select("users.id as users_id, users.name as users_name, pets.id as pets_id, pets.name as pets_name").
    		Joins("inner join pets on pets.user_id = users.id")
    
    	if err := DB.Migrator().CreateView("users_pets", gorm.ViewOption{Query: query}); err != nil {
    		t.Fatalf("Failed to crate view, got %v", err)
    	}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. istioctl/pkg/describe/describe.go

    	}
    
    	// TODO QueryParams, maybe Gateways
    	return strings.TrimSpace(retval)
    }
    
    func printPod(writer io.Writer, pod *corev1.Pod, revision string) {
    	ports := []string{}
    	UserID := int64(1337)
    	for _, container := range pod.Spec.Containers {
    		for _, port := range container.Ports {
    			var protocol string
    			// Suppress /<protocol> for TCP, print it for everything else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    Op that gets the global step id.
      }];
    
      let description = [{
    This op gets the step id for each loop iteration.
      }];
    
      let arguments = (ins);
    
      let results = (outs
        TF_Int64Tensor:$iter_id
      );
    }
    
    def TF_ResourceGatherNdOp : TF_Op<"ResourceGatherNd", []> {
      let summary = "GatherNd on a resource.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    To avoid this, Gradle offers the ability to use a local keyring file containing the required public keys.
    Note that only public key packets and a single userId per key are stored and used.
    All other information (user attributes, signatures, etc.) is stripped from downloaded or exported keys.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top