Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,946 for Avery (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    // PolicyRule maps requests based off metadata to an audit Level.
    // Requests must match the rules of every field (an intersection of rules).
    type PolicyRule struct {
    	// The Level that requests matching this rule are recorded at.
    	Level Level
    
    	// The users (by authenticated user name) this rule applies to.
    	// An empty list implies every user.
    	// +optional
    	Users []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            jar in signJar.dependsOn
            sourcesJar in signSourcesJar.dependsOn
            javadocJar in signJavadocJar.dependsOn
    
            and:
            signingTasks.every { it.singleSignature in configurations.signatures.artifacts }
    
            and:
            signingTasks.every { it.signatory == signing.signatory }
        }
    
        def "sign method return values"() {
            given:
            useJavadocAndSourceJars()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Lists.java

              checkElementIndex(index, size());
              return rest[index - 2];
          }
        }
    
        @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * lists in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the lists. For example:
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
  4. .github/workflows/team-triage-stale.yml

    name: 'Requeue stale team-triage items'
    on:
      schedule:
        # Execute every day at 00:05 to avoid conflicts with other workflows
        - cron: '5 0 * * *'
    
    permissions: {}
    
    jobs:
      requeue:
        permissions:
          issues: write
          pull-requests: write
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              remove-stale-when-updated: false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 835 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		close(c.done)
    	}
    }
    
    func (c *cacheWatcher) nonblockingAdd(event *watchCacheEvent) bool {
    	// if the bookmarkAfterResourceVersion hasn't been seen
    	// we will try to deliver a bookmark event every second.
    	// the following check will discard a bookmark event
    	// if it is < than the bookmarkAfterResourceVersion
    	// so that we don't pollute the input channel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. src/os/timeout_test.go

    				d = next
    			}
    			continue
    		}
    
    		break
    	}
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotHierarchy.java

             *
             * Only called for the node which is removed, and not every node in the hierarchy which is removed.
             */
            void nodeRemoved(FileSystemNode node);
    
            /**
             * Called when a node is added during the update.
             *
             * Only called for the node which is added, and not every node in the hierarchy which is added.
             */
            void nodeAdded(FileSystemNode node);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    		f(ctx)
    	})
    }
    
    // Start starts f in a new goroutine in the group.
    func (g *Group) Start(f func()) {
    	g.wg.Add(1)
    	go func() {
    		defer g.wg.Done()
    		f()
    	}()
    }
    
    // Forever calls f every period for ever.
    //
    // Forever is syntactic sugar on top of Until.
    func Forever(f func(), period time.Duration) {
    	Until(f, period, NeverStop)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial005_an_py39.py

        return client
    
    
    @needs_py39
    def test_post_body_example(client: TestClient):
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    @needs_py39
    def test_openapi_schema(client: TestClient) -> None:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 26 18:03:13 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm_arm64_test.go

    	cmd.Env = append(os.Environ(), "GOOS=linux")
    	out, err = cmd.CombinedOutput()
    	if err != nil {
    		t.Errorf("Build failed: %v, output: %s", err, out)
    	}
    }
    
    // gen generates a very large program, with a very far conditional branch.
    func gen(buf *bytes.Buffer) {
    	fmt.Fprintln(buf, "TEXT f(SB),0,$0-0")
    	fmt.Fprintln(buf, "TBZ $5, R0, label")
    	fmt.Fprintln(buf, "CBZ R0, label")
    	fmt.Fprintln(buf, "BEQ label")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:46:11 UTC 2023
    - 7.8K bytes
    - Viewed (0)
Back to top