Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 199 for logical (0.14 sec)

  1. src/time/time.go

    }
    
    func unixTime(sec int64, nsec int32) Time {
    	return Time{uint64(nsec), sec + unixToInternal, Local}
    }
    
    // UTC returns t with the location set to UTC.
    func (t Time) UTC() Time {
    	t.setLoc(&utcLoc)
    	return t
    }
    
    // Local returns t with the location set to local time.
    func (t Time) Local() Time {
    	t.setLoc(Local)
    	return t
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging_test.go

    			assert.Equal(t, first, second)
    		})
    	}
    }
    
    func TestBuildOpenTelemetryAccessLogConfig(t *testing.T) {
    	fakeCluster := "outbound|55680||otel-collector.monitoring.svc.cluster.local"
    	fakeAuthority := "otel-collector.monitoring.svc.cluster.local"
    	for _, tc := range []struct {
    		name        string
    		logName     string
    		clusterName string
    		hostname    string
    		body        string
    		labels      *structpb.Struct
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	localPreboundPVC1a  = makeTestPVC("local-prebound-pvc-1a", "1G", "", pvcPrebound, "local-pv-node1a", "1", &waitClass)
    	localPreboundPVC1b  = makeTestPVC("local-prebound-pvc-1b", "1G", "", pvcPrebound, "local-pv-node1b", "1", &waitClass)
    	localPreboundPVC2a  = makeTestPVC("local-prebound-pvc-2a", "1G", "", pvcPrebound, "local-pv-node2a", "1", &waitClass)
    
    	// PVCs for dynamic provisioning
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	if wroteGo && !opts.DropToolchain && !opts.ExplicitToolchain &&
    		gover.Compare(goVersion, gover.GoStrictVersion) >= 0 &&
    		(gover.Compare(gover.Local(), toolVers) > 0 && !gover.IsLang(gover.Local())) {
    		toolchain = "go" + gover.Local()
    		toolVers = gover.FromToolchain(toolchain)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	XCOFF_R_TLS_IE = 0x21 // Initial-exec reference to TLS symbol
    	XCOFF_R_TLS_LD = 0x22 // Local-dynamic reference to TLS symbol
    	XCOFF_R_TLS_LE = 0x23 // Local-exec reference to TLS symbol
    	XCOFF_R_TLSM   = 0x24 // Module reference to TLS symbol
    	XCOFF_R_TLSML  = 0x25 // Module reference to local (own) module
    
    	XCOFF_R_TOCU = 0x30 // Relative to TOC - high order bits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    	}
    	ms.data = ms.data[:siz]
    }
    
    // Convert a local index to a global index.
    func (l *Loader) toGlobal(r *oReader, i uint32) Sym {
    	return r.syms[i]
    }
    
    // Convert a global index to a local index.
    func (l *Loader) toLocal(i Sym) (*oReader, uint32) {
    	return l.objs[l.objSyms[i].objidx], l.objSyms[i].s
    }
    
    // Resolve a local symbol reference. Return global index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ppc64/asm.go

    		return
    	}
    
    	o := func(op uint32) {
    		initfunc.AddUint32(ctxt.Arch, op)
    	}
    
    	// Write a function to load this module's local.moduledata. This is shared code.
    	//
    	// package link
    	// void addmoduledata() {
    	//	runtime.addmoduledata(local.moduledata)
    	// }
    
    	if !hasPCrel {
    		// Regenerate TOC from R12 (the address of this function).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    [[sec:local-keyring-only]]
    == Forcing use of local keyrings only
    
    The local keyring files (`.gpg` or `.keys`) can be used to avoid reaching out to key servers whenever a key is required to verify an artifact.
    However, it may be that the local keyring doesn't contain a key, in which case Gradle would use the key servers to fetch the missing key.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/{{.Namespace}}/sa/{{.Source}}", "cluster.local/ns/{{.Namespace}}/sa/{{.WaypointName}}"]
    `,
    				},
    				{
    					name:  "not allow",
    					check: CheckDeny,
    					spec: `
      rules:
      - from:
        - source:
            principals: ["cluster.local/ns/something/sa/else"]
              `,
    				},
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. src/go/build/build.go

    	}
    	return name[i:]
    }
    
    var installgoroot = godebug.New("installgoroot")
    
    // Import returns details about the Go package named by the import path,
    // interpreting local import paths relative to the srcDir directory.
    // If the path is a local import path naming a package that can be imported
    // using a standard import path, the returned package will set p.ImportPath
    // to that path.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top