Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 2,031 for actors (0.18 sec)

  1. .github/workflows/arm-ci-extended.yml

          - name: Clean repository
            shell: bash
            run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true
          - name: Checkout repository for nightly (skipped for releases)
            if: ${{ github.event_name == 'schedule' }}
            uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
            with:
              ref: 'nightly'
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller_test.go

    		f.t.Error("expected error syncing deployment, got nil")
    	}
    
    	actions := filterInformerActions(f.client.Actions())
    	for i, action := range actions {
    		if len(f.actions) < i+1 {
    			f.t.Errorf("%d unexpected actions: %+v", len(actions)-len(f.actions), actions[i:])
    			break
    		}
    
    		expectedAction := f.actions[i]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainer.java

            private final Function<String, I> factory;
    
            public NamedDomainObjectCreatingProvider(String name, Class<I> type, @Nullable Action<? super I> configureAction, Function<String, I> factory) {
                super(name, type, configureAction);
                this.factory = factory;
            }
    
            @Override
            protected I createDomainObject() {
                return factory.apply(getName());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. .github/workflows/go.yml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.22.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.1K bytes
    - Viewed (1)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultMavenRepositoryContentDescriptor.java

                            details.notFound();
                        }
                    }
                };
                if (filter == Actions.doNothing()) {
                    return action;
                }
                return Actions.composite(filter, action);
            }
            return filter;
        }
    
        @Override
        public RepositoryContentDescriptorInternal asMutableCopy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/crypto/cipher/example_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cipher_test
    
    import (
    	"bytes"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/hex"
    	"fmt"
    	"io"
    	"os"
    )
    
    func ExampleNewGCM_encrypt() {
    	// Load your secret key from a safe place and reuse it across multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 30 16:23:44 UTC 2018
    - 11.8K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * execution.</p>
         *
         * @return The task actions in the order they are executed. Returns an empty list if this task has no actions.
         */
        @Internal
        List<Action<? super Task>> getActions();
    
        /**
         * <p>Sets the sequence of {@link Action} objects which will be executed by this task.</p>
         *
         * @param actions The actions.
         */
        void setActions(List<Action<? super Task>> actions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    }
    
    func expectActions(t *testing.T, actions []k8stesting.Action, num int, verb, resource string) {
    	t.Helper()
    	// if actions are less the below logic will panic
    	if num > len(actions) {
    		t.Fatalf("len of actions %v is unexpected. Expected to be at least %v", len(actions), num+1)
    	}
    
    	for i := 0; i < num; i++ {
    		relativePos := len(actions) - i - 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	# API consistent across platforms.
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs -- -fsigned-char"
    	;;
    openbsd_arm64)
    	mkasm="go run mkasm.go"
    	mkerrors="$mkerrors -m64"
    	mksyscall="go run mksyscall.go -openbsd -libc"
    	mksysctl="go run mksysctl_openbsd.go"
    	# Let the type of C char be signed for making the bare syscall
    	# API consistent across platforms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ImmutableActionSetTest.groovy

            1 * action1.execute("value")
            1 * action2.execute("value")
            1 * action3.execute("value")
            0 * _
        }
    
        def "ignores no-op actions when creating a composite"() {
            expect:
            ImmutableActionSet.of(Actions.doNothing(), Actions.doNothing()).is(ImmutableActionSet.empty())
        }
    
        def "ignores empty sets is a composite"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 16.1K bytes
    - Viewed (0)
Back to top