Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 202 for Grappler (0.32 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

    }
    
    private fun ConeKotlinType.simplifyType(
        session: FirSession,
        useSitePosition: PsiElement,
        visited: MutableSet<ConeKotlinType> = mutableSetOf(),
    ): ConeKotlinType {
        // E.g., Wrapper<T> : Comparable<Wrapper<T>>
        if (!visited.add(this)) return this
    
        val substitutor = AnonymousTypesSubstitutor(session)
        val visibilityForApproximation = useSitePosition.visibilityForApproximation
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. pkg/kube/krt/collection.go

    // The conversion function can convert to a embedded struct with extra methods added:
    //
    //	type Wrapper struct { Object }
    //	func (w Wrapper) ResourceName() string { return ... }
    //	WithObjectAugmentation(func(o any) any { return Wrapper{o.(Object)} })
    func WithObjectAugmentation(fn func(o any) any) CollectionOption {
    	return func(c *collectionOptions) {
    		c.augmentation = fn
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. cmd/bucket-policy-handlers_test.go

    					policy.PutObjectAction,
    				),
    				policy.NewResourceSet(policy.NewResource(bucketName+"/"+prefix)),
    				condition.NewFunctions(),
    			),
    		},
    	}
    }
    
    // Wrapper for calling Create Bucket and ensure we get one and only one success.
    func TestCreateBucket(t *testing.T) {
    	ExecObjectLayerAPITest(ExecObjectLayerAPITestArgs{t: t, objAPITest: testCreateBucket, endpoints: []string{"MakeBucket"}})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. pkg/volume/testing/volume_host.go

    	return map[v1.UniqueVolumeName]string{}, nil
    }
    
    func (f *fakeVolumeHost) NewWrapperMounter(volName string, spec Spec, pod *v1.Pod, opts VolumeOptions) (Mounter, error) {
    	// The name of wrapper volume is set to "wrapped_{wrapped_volume_name}"
    	wrapperVolumeName := "wrapped_" + volName
    	if spec.Volume != nil {
    		spec.Volume.Name = wrapperVolumeName
    	}
    	plug, err := f.pluginMgr.FindPluginBySpec(&spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableMap.java

    /**
     * GWT emulation of {@link com.google.common.collect.ImmutableMap}. For non sorted maps, it is a
     * thin wrapper around {@link java.util.Collections#emptyMap()}, {@link
     * Collections#singletonMap(Object, Object)} and {@link java.util.LinkedHashMap} for empty,
     * singleton and regular maps respectively. For sorted maps, it's a thin wrapper around {@link
     * java.util.TreeMap}.
     *
     * @see ImmutableSortedMap
     * @author Hayward Chan
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/stream_executor/stream_executor.cc

      DeviceMemoryBase base(mem.opaque, mem.size);
      base.SetPayload(mem.payload);
      return base;
    }
    
    // Wrapper that allows passing std::function across C API.
    struct HostCallbackContext {
      absl::AnyInvocable<absl::Status() &&> callback;
    };
    
    // This wrapper allows calling `HostCallbackContext::callback` across C API.
    // This function matches `SE_StatusCallbackFn` signature and will be passed as
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 14 07:39:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

                    column == -1
                    line == 11
                    path == "build file '$buildFile.absolutePath'"
                }
            }
        }
    
        def "can throw a problem with a wrapper exception"() {
            given:
            withReportProblemTask """
                problems.forNamespace('org.example.plugin').throwing {
                    it.id('type', 'label')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    [listing.terminal.sample-command]
    ----
    $ gradle init
    $ git add .
    $ git commit -m "Initial commit"
    $ git push
    ----
    
    === Test building the project
    
    The project uses the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>> for building the project.
    It is a recommended practice for any Gradle project as it enables your project to built on CI without having to install the Gradle runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. src/net/splice_linux_test.go

    		}
    
    		if n := r.(*io.LimitedReader).N; n != int64(wantN) {
    			t.Errorf("r.N = %d, want %d", n, wantN)
    		}
    	}
    
    	// poll.Splice is expected to be called when the source is not
    	// a wrapper or the destination is TCPConn.
    	if tc.limitReadSize == 0 || tc.downNet == "tcp" {
    		// We should have called poll.Splice with the right file descriptor arguments.
    		if n > 0 && !hook.called {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle init --type java-library
    ----
    
    === Standardize and provision Gradle
    The built-in `gradle wrapper` task generates a script, `gradlew`, that invokes a declared version of Gradle, downloading it beforehand if necessary.
    
    ----
    $ gradle wrapper --gradle-version=8.1
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top