Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for assignTo (0.06 sec)

  1. .github/workflows/auto-assign-pr-to-author.yml

    name: 'Auto Assign PR to Author'
    on:
      pull_request:
        types: [opened]
    
    permissions: {}
    
    jobs:
      add-reviews:
        permissions:
          contents: read  # for kentaro-m/auto-assign-action to fetch config file
          pull-requests: write  # for kentaro-m/auto-assign-action to assign PR reviewers
        runs-on: ubuntu-latest
        steps:
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-11-12 13:13
    - 381 bytes
    - Viewed (0)
  2. tests/serializer_test.go

    			IsIntern: false,
    		},
    		CustomSerializerString: "world",
    	}
    
    	// first time insert record
    	out := SerializerStruct{}
    	if err := DB.Assign(data).FirstOrCreate(&out).Error; err != nil {
    		t.Fatalf("failed to FirstOrCreate Assigned data, got error %v", err)
    	}
    
    	var result SerializerStruct
    	if err := DB.First(&result, out.ID).Error; err != nil {
    		t.Fatalf("failed to query data, got error %v", err)
    Registered: 2025-05-25 09:35
    - Last Modified: 2023-04-21 14:09
    - 7.6K bytes
    - Viewed (0)
  3. .github/workflows/create_issue.js

     * limitations under the License.
     * =============================================================================
     */
    
    /** Extracts PR from commit message and creates a GitHub Issue on Rollback of PR
      Created issue is assigned to original PR owner and reviewer.
    
      @param {!object}
        github enables querying for PR and also create issue using rest endpoint
        context has the commit message details in the payload
    Registered: 2025-05-27 12:39
    - Last Modified: 2021-10-18 23:04
    - 2.8K bytes
    - Viewed (0)
  4. architecture/standards/0005-introduce-core-ui-architecture-module.md

    This ADR does not specify the owner of this new architecture module. However, as a separate module, it can be assigned ownership independently of the other core services.
    
    ## Status
    
    ACCEPTED
    
    ## Consequences
    
    - Introduce the module and move the services and their implementations.
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-07 08:43
    - 1.3K bytes
    - Viewed (0)
  5. .github/workflows/stale-issues.yml

            uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
            with:
              #Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale
              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
    Registered: 2025-05-27 12:39
    - Last Modified: 2025-02-01 08:42
    - 4.1K bytes
    - Viewed (0)
  6. docs/bucket/replication/setup_replication.sh

          ],
          "Resource": [
           "arn:aws:s3:::bucket"
          ]
         }
        ]
       }
    EOF
    mc admin policy create source repladmin-policy ./repladmin-policy-source.json
    cat ./repladmin-policy-source.json
    
    #assign this replication policy to repladmin
    mc admin policy attach source repladmin-policy --user=repladmin
    
    ### on dest alias
    # Create a replication user : repluser on dest alias
    mc admin user add dest repluser repluser123
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-05-26 05:07
    - 2.6K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Settings.kt

        return this
      }
    
      /** Returns true if a value has been assigned for the setting `id`. */
      fun isSet(id: Int): Boolean {
        val bit = 1 shl id
        return set and bit != 0
      }
    
      /** Returns the value for the setting `id`, or 0 if unset. */
      operator fun get(id: Int): Int = values[id]
    
      /** Returns the number of settings that have values assigned. */
      fun size(): Int = Integer.bitCount(set)
    
    Registered: 2025-05-30 11:42
    - Last Modified: 2024-12-27 13:39
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_internal.h

        TF_LOCKS_EXCLUDED(session->graph->mu, session->mu);
    
    std::string getTF_OutputDebugString(TF_Output node);
    
    // Set whether to propagate assigned device information when constructing a new
    // Graph from a GraphDef. By default assigned device information is not copied
    // and is re-computed by the runtime.
    inline void TF_ImportGraphDefOptionsSetPropagateDeviceSpec(
    Registered: 2025-05-27 12:39
    - Last Modified: 2023-05-13 00:49
    - 7.6K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/regexp/syntax/70781.md

    The `\p{name}` and `\P{name}` character class syntaxes now accept the names
    Any, ASCII, Assigned, Cn, and LC, as well as Unicode category aliases like `\p{Letter}` for `\pL`.
    Following [Unicode TR18](https://unicode.org/reports/tr18/), they also now use
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-04-18 21:13
    - 328 bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      // `scope-hostname.io/name`.
      // If empty, it will be defaulted:
      //  1. If it's a kubelet client certificate, it is assigned
      //     "kubernetes.io/kube-apiserver-client-kubelet".
      //  2. If it's a kubelet serving certificate, it is assigned
      //     "kubernetes.io/kubelet-serving".
      //  3. Otherwise, it is assigned "kubernetes.io/legacy-unknown".
      // Distribution of trust for signers happens out of band.
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-03-11 18:43
    - 6.7K bytes
    - Viewed (0)
Back to top