Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for _dot_ (0.06 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    	switch {
    	case name != nil:
    		x = name
    	case p.tok == _Name:
    		x = p.name()
    	default:
    		x = NewName(p.pos(), "_")
    		p.syntaxError("expected name")
    		p.advance(_Dot, _Semi, _Rbrace)
    	}
    
    	if p.tok == _Dot {
    		s := new(SelectorExpr)
    		s.pos = p.pos()
    		p.next()
    		s.X = x
    		s.Sel = p.name()
    		x = s
    	}
    
    	if p.tok == _Lbrack {
    		x = p.typeInstance(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - metadata artifacts (POM files, Ivy descriptors, Gradle Module Metadata)
    - plugins (both project and settings plugins)
    - artifacts resolved using the advanced dependency resolution APIs
    
    Gradle will _not_ verify changing dependencies (in particular `SNAPSHOT` dependencies) nor locally produced artifacts (typically jars produced during the build itself) as by nature their checksums and signatures would always change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. tensorflow/BUILD

    # 'enable_registration_v2' opts-in to a different implementation of op and
    # kernel registration - REGISTER_OP, REGISTER_KERNEL_BUILDER, etc.
    #
    # This setting is currently experimental. The 'v2' implementation does _not_
    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    === Whitebox unit test execution on the classpath
    
    The simplest setup to write unit tests for functions or classes in modules is to _not_ use module specifics during test execution.
    For this, you just need to write tests the same way you would write them for normal libraries.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    
    Both the `copyAssets` and `distApp` tasks will process the static resources under `src/main/webapp`, as specified by `webAssetsSpec`.
    
    [NOTE]
    ====
    The configuration defined by `webAssetsSpec` will _not_ apply to the app classes included by the `distApp` task.
    That's because `from appClasses` is its own child specification independent of `with webAssetsSpec`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/Futures.java

      //    listener. Notably, this means that 'volatile' is unnecessary to make 'inputFuture' visible
      //    to the listener.
      //
      // 2. In done() where we may propagate cancellation to the input. In this case it is _not_ fine.
      //    There is currently nothing that enforces that the write to inputFuture in the constructor is
      //    visible to done(). This is because there is no happens before edge between the write and a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Futures.java

      //    listener. Notably, this means that 'volatile' is unnecessary to make 'inputFuture' visible
      //    to the listener.
      //
      // 2. In done() where we may propagate cancellation to the input. In this case it is _not_ fine.
      //    There is currently nothing that enforces that the write to inputFuture in the constructor is
      //    visible to done(). This is because there is no happens before edge between the write and a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    	assert.NoError(t, err)
    	result := m.SyncPod(context.Background(), pod, podStatus, []v1.Secret{}, backOff)
    	// This will return an error if the pod has _not_ been deleted.
    	assert.NoError(t, result.Error())
    }
    
    func makeBasePodAndStatusWithInitAndEphemeralContainers() (*v1.Pod, *kubecontainer.PodStatus) {
    	pod, status := makeBasePodAndStatus()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top